Home
last modified time | relevance | path

Searched refs:kSync (Results 1 – 25 of 204) sorted by relevance

123456789

/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/fxa/login/
H A DTokensAndKeysState.java13 /* package-private */ final byte[] kSync; field in TokensAndKeysState
17 …teLabel stateLabel, String email, String uid, byte[] sessionToken, byte[] kSync, String kXCS, Brow… in TokensAndKeysState() argument
19 Utils.throwIfNull(sessionToken, kSync, kXCS, keyPair); in TokensAndKeysState()
21 this.kSync = kSync; in TokensAndKeysState()
31 o.put("kSync", Utils.byte2Hex(kSync)); in toJSONObject()
H A DEngaged.java61 final byte[] kSync; in execute()
66 kSync = FxAccountUtils.deriveSyncKey(kB); in execute()
72 FxAccountUtils.pii(LOG_TAG, "Giving derived kSync: " + Utils.byte2Hex(kSync)); in execute()
82 …delegate.handleTransition(transition, new Cohabiting(email, uid, sessionToken, kSync, kXCS, keyPai… in execute()
H A DCohabiting.java17 …/* package-private */ Cohabiting(String email, String uid, byte[] sessionToken, byte[] kSync, Stri… in Cohabiting() argument
18 super(StateLabel.Cohabiting, email, uid, sessionToken, kSync, kXCS, keyPair); in Cohabiting()
22 return new Married(email, uid, sessionToken, kSync, kXCS, keyPair, certificate); in withCertificate()
H A DMarried.java31 …public Married(String email, String uid, byte[] sessionToken, byte[] kSync, String kXCS, BrowserID… in Married() argument
32 super(StateLabel.Married, email, uid, sessionToken, kSync, kXCS, keyPair); in Married()
96 return FxAccountUtils.generateSyncKeyBundle(kSync); in getSyncKeyBundle()
107 return new Cohabiting(email, uid, sessionToken, kSync, kXCS, keyPair); in makeCohabitingState()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/signin/internal/identity_manager/
H A Dprimary_account_manager_unittest.cc112 EXPECT_TRUE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in ExpectSignInWithRefreshTokenSuccess()
157 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
164 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
179 EXPECT_TRUE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
186 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
202 EXPECT_TRUE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
209 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
236 EXPECT_TRUE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
243 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
251 EXPECT_FALSE(manager_->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
[all …]
H A Dprimary_account_manager.cc138 if (!HasPrimaryAccount(signin::ConsentLevel::kSync)) in GetAuthenticatedAccountInfo()
154 if (HasPrimaryAccount(signin::ConsentLevel::kSync)) { in SetUnconsentedPrimaryAccountInfo()
171 DCHECK(!HasPrimaryAccount(signin::ConsentLevel::kSync)); in SetAuthenticatedAccountInfo()
230 case signin::ConsentLevel::kSync: in HasPrimaryAccount()
241 if (HasPrimaryAccount(signin::ConsentLevel::kSync)) { in SignIn()
259 DCHECK(HasPrimaryAccount(signin::ConsentLevel::kSync)); in UpdateAuthenticatedAccountInfo()
302 DCHECK(HasPrimaryAccount(signin::ConsentLevel::kSync)); in RevokeSyncConsent()
319 if (HasPrimaryAccount(signin::ConsentLevel::kSync)) { in StartSignOut()
362 if (HasPrimaryAccount(signin::ConsentLevel::kSync)) in OnSignoutDecisionReached()
H A Dprimary_account_policy_manager_impl.cc72 if (primary_account_manager->HasPrimaryAccount(signin::ConsentLevel::kSync) && in OnGoogleServicesUsernamePatternChanged()
90 primary_account_manager->HasPrimaryAccount(signin::ConsentLevel::kSync)) { in OnSigninAllowedPrefChanged()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/sync/
H A Dturn_sync_on_helper_unittest.cc117 EXPECT_TRUE(identity_manager()->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
136 EXPECT_FALSE(identity_manager()->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
155 EXPECT_FALSE(identity_manager()->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
162 ASSERT_FALSE(identity_manager()->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
180 ASSERT_TRUE(identity_manager()->HasPrimaryAccount(ConsentLevel::kSync)); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/webui/settings/chromeos/
H A Dpeople_section.cc158 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
164 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
170 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
178 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
184 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
190 mojom::SearchResultIcon::kSync, in GetNonSplitSyncSearchConcepts()
202 mojom::SearchResultIcon::kSync, in GetSplitSyncSearchConcepts()
205 {.subpage = mojom::Subpage::kSync}}, in GetSplitSyncSearchConcepts()
214 mojom::SearchResultIcon::kSync, in GetSplitSyncOnSearchConcepts()
227 mojom::SearchResultIcon::kSync, in GetSplitSyncOffSearchConcepts()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/services/fxaccounts/
H A DFxAccountsKeys.jsm41 // - kSync, kXCS, kExtSync and kExtKbHash means we already have them.
42 // - kB is deprecated but |getKeys| will help us migrate to kSync and friends.
65 * kSync: An encryption key for Sync
201 let { kSync, kXCS } = await this.getKeys();
202 if (!kSync || !kXCS) {
208 kSync = ChromeUtils.base64URLEncode(CommonUtils.hexToArrayBuffer(kSync), {
215 k: kSync,
240 kSync: CommonUtils.bytesAsHex(await this._deriveSyncKey(kBbytes)),
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/unified_consent/
H A Dunified_consent_metrics.cc37 kSync = 11, enumerator
39 kMaxValue = kSync
55 RecordSyncDataTypeSample(SyncDataType::kSync); in RecordSyncSetupDataTypesImpl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/unified_consent/
H A Dunified_consent_metrics.cc37 kSync = 11, enumerator
39 kMaxValue = kSync
55 RecordSyncDataTypeSample(SyncDataType::kSync); in RecordSyncSetupDataTypesImpl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/web_applications/
H A Dweb_app_unittest.cc68 app.AddSource(Source::kSync); in TEST()
74 app.RemoveSource(Source::kSync); in TEST()
106 app.AddSource(Source::kSync); in TEST()
116 app.RemoveSource(Source::kSync); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/login/demo_mode/
H A Ddemo_setup_browsertest.cc80 enum class JSExecution { kSync, kAsync }; enumerator
288 case JSExecution::kSync: in ClickOobeButtonWithSelector()
320 case JSExecution::kSync: in ClickScreenDialogButtonWithSelector()
578 "#arcTosNextButton", JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
666 "#arcTosNextButton", JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
718 "#arcTosNextButton", JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
915 OobeButton::kText, JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
975 OobeButton::kText, JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
1041 OobeButton::kText, JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
1079 JSExecution::kSync); in IN_PROC_BROWSER_TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/html/imports/
H A Dhtml_import.h49 enum SyncMode { kSync = 0, kAsync = 1 }; enumerator
57 bool IsSync() const { return SyncMode(sync_) == kSync; } in IsSync()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/html/imports/
H A Dhtml_import.h49 enum SyncMode { kSync = 0, kAsync = 1 }; enumerator
57 bool IsSync() const { return SyncMode(sync_) == kSync; } in IsSync()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/navigation_interception/
H A Dintercept_navigation_throttle.h30 kSync enumerator
72 const SynchronyMode mode_ = SynchronyMode::kSync;
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/navigation_interception/
H A Dintercept_navigation_throttle.h30 kSync enumerator
72 const SynchronyMode mode_ = SynchronyMode::kSync;
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/extensions/api/identity/
H A Didentity_get_profile_user_info_function.cc32 return signin::ConsentLevel::kSync; in GetConsentLevelFromProfileDetails()
36 return signin::ConsentLevel::kSync; in GetConsentLevelFromProfileDetails()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/test/java/org/mozilla/gecko/fxa/login/
H A DTestStateFactory.java47 byte[] kSync = FxAccountUtils.deriveSyncKey(kB); in testGetStateV2()
50 Cohabiting cohabiting = new Cohabiting("email", "uid", sessionToken, kSync, kXCS, keyPair); in testGetStateV2()
52 Married married = new Married("email", "uid", sessionToken, kSync, kXCS, keyPair, certificate); in testGetStateV2()
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/tiles/
H A Dchecker_image_tracker_unittest.cc576 {2, PaintImage::DecodingMode::kSync}, in TEST_F()
582 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
595 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
607 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
612 hints = {{1, PaintImage::DecodingMode::kSync}}; in TEST_F()
615 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
617 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
630 {image.paint_image().stable_id(), PaintImage::DecodingMode::kSync}}; in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/tiles/
H A Dchecker_image_tracker_unittest.cc576 {2, PaintImage::DecodingMode::kSync}, in TEST_F()
582 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
595 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
607 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
612 hints = {{1, PaintImage::DecodingMode::kSync}}; in TEST_F()
615 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
617 EXPECT_EQ(PaintImage::DecodingMode::kSync, in TEST_F()
630 {image.paint_image().stable_id(), PaintImage::DecodingMode::kSync}}; in TEST_F()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/tir/transforms/
H A Dthread_storage_sync.cc78 } else if (acc.type == kSync) { in Summarize()
94 } else if (acc.type == kSync) { in Summarize()
121 } else if (acc.type == kSync) { in Summarize()
139 esync.type = kSync; in Summarize()
152 if (acc.type == kSync) { in Summarize()
/dports/lang/v8/v8-9.6.180.12/src/extensions/
H A Dgc-extension.cc22 enum class ExecutionType { kAsync, kSync }; enumerator
46 ExecutionType::kSync}; in Parse()
149 case ExecutionType::kSync: in GC()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/extensions/
H A Dgc-extension.cc18 enum class ExecutionType { kAsync, kSync }; enumerator
42 ExecutionType::kSync}; in Parse()
145 case ExecutionType::kSync: in GC()

123456789