/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/services/src/main/java/org/mozilla/gecko/sync/ |
H A D | EngineSettings.java | 8 public final String syncID; field in EngineSettings 11 public EngineSettings(final String syncID, final int version) { in EngineSettings() argument 12 this.syncID = syncID; in EngineSettings() 18 this.syncID = object.getString("syncID"); in EngineSettings() 27 json.put("syncID", syncID); in toJSONObject()
|
H A D | SynchronizerConfiguration.java | 18 public String syncID; field in SynchronizerConfiguration 26 …public SynchronizerConfiguration(String syncID, RepositorySessionBundle remoteBundle, RepositorySe… in SynchronizerConfiguration() argument 27 this.syncID = syncID; in SynchronizerConfiguration() 47 syncID = config.getString("syncID", null); in load() 50 …Logger.debug(LOG_TAG, "Loaded SynchronizerConfiguration. syncID: " + syncID + ", remoteBundle: " +… in load() 62 editor.putString("syncID", syncID); in persist() 66 …Logger.debug(LOG_TAG, "Persisted SynchronizerConfiguration. syncID: " + syncID + ", remoteBundle: … in persist()
|
H A D | MetaGlobal.java | 33 protected String syncID; field in MetaGlobal 81 json.put("syncID", syncID); in asRecordContents() 212 String syncID = engineEntry.getString("syncID"); in recordEngineState() local 213 if (syncID == null) { in recordEngineState() 217 syncIDs.put(engineName, syncID); in recordEngineState() 289 final String syncID = syncIDs.get(engineName); in verifyEngineSettings() local 290 if (syncID == null) { in verifyEngineSettings() 303 if (!syncID.equals(engineSettings.syncID)) { in verifyEngineSettings() 310 return syncID; in getSyncID() 313 public void setSyncID(String syncID) { in setSyncID() argument [all …]
|
H A D | MetaGlobalException.java | 33 public MetaGlobalStaleClientSyncIDException(final String syncID) { in MetaGlobalStaleClientSyncIDException() argument 34 this.serverSyncID = syncID; in MetaGlobalStaleClientSyncIDException()
|
H A D | SyncConfiguration.java | 38 public String syncID; field in SyncConfiguration 288 syncID = prefs.getString(PREF_SYNC_ID, null); in loadFromPrefs() 289 Logger.trace(LOG_TAG, "Set syncID from bundle: " + syncID); in loadFromPrefs() 319 if (syncID != null) { in persistToPrefs() 320 edit.putString(PREF_SYNC_ID, syncID); in persistToPrefs()
|
H A D | GlobalSession.java | 623 String localSyncID = config.syncID; in processMetaGlobal() 628 config.syncID = remoteSyncID; in processMetaGlobal() 741 Logger.info(LOG_TAG, "Uploading new meta/global with sync ID " + mg.syncID + "."); in freshStart() 750 … Logger.info(LOG_TAG, "Uploaded new meta/global with sync ID " + uploadedGlobal.syncID + "."); in freshStart()
|
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/sync/ |
H A D | EngineSettings.java | 8 public final String syncID; field in EngineSettings 11 public EngineSettings(final String syncID, final int version) { in EngineSettings() argument 12 this.syncID = syncID; in EngineSettings() 18 this.syncID = object.getString("syncID"); in EngineSettings() 27 json.put("syncID", syncID); in toJSONObject()
|
H A D | SynchronizerConfiguration.java | 18 public String syncID; field in SynchronizerConfiguration 26 …public SynchronizerConfiguration(String syncID, RepositorySessionBundle remoteBundle, RepositorySe… in SynchronizerConfiguration() argument 27 this.syncID = syncID; in SynchronizerConfiguration() 47 syncID = config.getString("syncID", null); in load() 50 …Logger.debug(LOG_TAG, "Loaded SynchronizerConfiguration. syncID: " + syncID + ", remoteBundle: " +… in load() 62 editor.putString("syncID", syncID); in persist() 66 …Logger.debug(LOG_TAG, "Persisted SynchronizerConfiguration. syncID: " + syncID + ", remoteBundle: … in persist()
|
H A D | MetaGlobal.java | 33 protected String syncID; field in MetaGlobal 80 json.put("syncID", syncID); in asRecordContents() 211 String syncID = engineEntry.getString("syncID"); in recordEngineState() local 212 if (syncID == null) { in recordEngineState() 216 syncIDs.put(engineName, syncID); in recordEngineState() 288 final String syncID = syncIDs.get(engineName); in verifyEngineSettings() local 289 if (syncID == null) { in verifyEngineSettings() 302 if (!syncID.equals(engineSettings.syncID)) { in verifyEngineSettings() 309 return syncID; in getSyncID() 312 public void setSyncID(String syncID) { in setSyncID() argument [all …]
|
H A D | MetaGlobalException.java | 33 public MetaGlobalStaleClientSyncIDException(final String syncID) { in MetaGlobalStaleClientSyncIDException() argument 34 this.serverSyncID = syncID; in MetaGlobalStaleClientSyncIDException()
|
H A D | SyncConfiguration.java | 38 public String syncID; field in SyncConfiguration 289 syncID = prefs.getString(PREF_SYNC_ID, null); in loadFromPrefs() 290 Logger.trace(LOG_TAG, "Set syncID from bundle: " + syncID); in loadFromPrefs() 320 if (syncID != null) { in persistToPrefs() 321 edit.putString(PREF_SYNC_ID, syncID); in persistToPrefs()
|
H A D | GlobalSession.java | 711 String localSyncID = config.syncID; 716 config.syncID = remoteSyncID; 849 Logger.info(LOG_TAG, "Uploading new meta/global with sync ID " + mg.syncID + "."); 858 … Logger.info(LOG_TAG, "Uploaded new meta/global with sync ID " + uploadedGlobal.syncID + ".");
|
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/tests/background/junit4/src/org/mozilla/gecko/sync/stage/test/ |
H A D | TestFetchMetaGlobalStage.java | 203 session.config.syncID = TEST_SYNC_ID; in testFetchSuccessWithSameSyncID() 221 assertEquals(TEST_SYNC_ID, session.config.syncID); in testFetchSuccessWithSameSyncID() 236 session.config.syncID = "NOT TEST SYNC ID"; in testFetchSuccessWithDifferentSyncID() 254 assertEquals(TEST_SYNC_ID, session.config.syncID); in testFetchSuccessWithDifferentSyncID() 268 session.config.syncID = "NOT TEST SYNC ID"; in testFetchSuccessWithDifferentSyncIDMergesDeclined()
|
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/services/src/main/java/org/mozilla/gecko/sync/stage/ |
H A D | ServerSyncStage.java | 134 return new EngineSettings(config.syncID, version); in getEngineSettings() 201 protected void resetLocalWithSyncID(String syncID) { in resetLocalWithSyncID() argument 211 if (syncID != null) { in resetLocalWithSyncID() 212 config.syncID = syncID; in resetLocalWithSyncID() 213 Logger.info(LOG_TAG, "Setting syncID for " + this + " to '" + syncID + "'."); in resetLocalWithSyncID()
|
/dports/devel/tinygo/tinygo-0.14.1/vendor/github.com/chromedp/cdproto/tracing/ |
H A D | tracing.go | 71 func RecordClockSyncMarker(syncID string) *RecordClockSyncMarkerParams { 73 SyncID: syncID,
|
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/sync/stage/ |
H A D | ServerSyncStage.java | 151 return new EngineSettings(config.syncID, version); in getEngineSettings() 266 private void resetLocalWithSyncID(String syncID) { in resetLocalWithSyncID() argument 276 if (syncID != null) { in resetLocalWithSyncID() 277 config.syncID = syncID; in resetLocalWithSyncID() 278 Logger.info(LOG_TAG, "Setting syncID for " + this + " to '" + syncID + "'."); in resetLocalWithSyncID()
|
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/test/java/org/mozilla/gecko/sync/stage/test/ |
H A D | TestFetchMetaGlobalStage.java | 227 session.config.syncID = TEST_SYNC_ID; in testFetchSuccessWithSameSyncID() 245 assertEquals(TEST_SYNC_ID, session.config.syncID); in testFetchSuccessWithSameSyncID() 260 session.config.syncID = "NOT TEST SYNC ID"; in testFetchSuccessWithDifferentSyncID() 278 assertEquals(TEST_SYNC_ID, session.config.syncID); in testFetchSuccessWithDifferentSyncID() 292 session.config.syncID = "NOT TEST SYNC ID"; in testFetchSuccessWithDifferentSyncIDMergesDeclined()
|
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/render/backends/gl/ |
H A D | qssgrenderbackendgl3.cpp | 804 GLsync syncID = nullptr; in createSync() local 806 syncID = GL_CALL_EXTRA_FUNCTION(glFenceSync(m_conversion.fromSyncTypeToGL(syncType), 0)); in createSync() 808 return QSSGRenderBackendSyncObject(syncID); in createSync() 813 GLsync syncID = GLsync(so); in releaseSync() local 815 GL_CALL_EXTRA_FUNCTION(glDeleteSync(syncID)); in releaseSync() 820 GLsync syncID = GLsync(so); in waitSync() local 822 GL_CALL_EXTRA_FUNCTION(glWaitSync(syncID, 0, GL_TIMEOUT_IGNORED)); in waitSync()
|
H A D | qssgrenderbackendgles2.cpp | 864 GLsync syncID = nullptr; in createSync() local 865 return QSSGRenderBackendSyncObject(syncID); in createSync()
|
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/tests/background/junit3/src/org/mozilla/gecko/background/sync/ |
H A D | TestSyncConfiguration.java | 80 config.syncID = "test1"; in testSyncID() 84 assertEquals("test1", config.syncID); in testSyncID()
|
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/androidTest/java/org/mozilla/gecko/background/sync/ |
H A D | TestSyncConfiguration.java | 80 config.syncID = "test1"; in testSyncID() 84 assertEquals("test1", config.syncID); in testSyncID()
|
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/ledisdb/server/ |
H A D | replication.go | 310 var syncID uint64 311 if syncID, err = m.nextSyncLogID(); err != nil { 315 if err := m.conn.Send("sync", syncID); err != nil {
|
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/sync/synchronizer/ |
H A D | Synchronizer.java | 98 configSyncID = config.syncID; in load()
|
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/services/src/main/java/org/mozilla/gecko/sync/synchronizer/ |
H A D | Synchronizer.java | 103 configSyncID = config.syncID; in load()
|
/dports/www/firefox/firefox-99.0/toolkit/components/passwordmgr/ |
H A D | nsILoginManagerStorage.idl | 235 Promise setSyncID(in AString syncID);
|