HomeSort by relevance Sort by last modified time
    Searched full:android_id (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/identity/
SettingsSecureBasedIdentificationGenerator.java 17 * Unique identificator implementation that uses the Settings.Secure.ANDROID_ID field and MD5
44 return Settings.Secure.getString(mContext.getContentResolver(), Settings.Secure.ANDROID_ID);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/identity/
SettingsSecureBasedIdentificationGeneratorTest.java 16 private static final String FLAG_ANDROID_ID = "android_id";
  /external/chromium_org/google_apis/gcm/
gcm_client.h 68 CheckInInfo() : android_id(0), secret(0) {}
69 bool IsValid() const { return android_id != 0 && secret != 0; }
71 android_id = 0;
75 uint64 android_id; member in struct:gcm::GCMClient::CheckInInfo
  /external/chromium_org/chrome/browser/services/gcm/
gcm_client_mock.cc 40 // Simulate the android_id and secret by some sort of hashing.
124 checkin_info.android_id = HashToUInt64(username);
125 checkin_info.secret = checkin_info.android_id / 10;
gcm_profile_service_unittest.cc 285 EXPECT_EQ(expected_checkin_info.android_id, checkin_info_.android_id);
302 EXPECT_EQ(saved_checkin_info.android_id, checkin_info_.android_id);
gcm_profile_service.cc 442 uint64 android_id = pref_service->GetUint64(prefs::kGCMUserAccountID); local
446 if (android_id && !encrypted_secret.empty()) {
452 checkin_info.android_id = android_id;
525 pref_service->SetUint64(prefs::kGCMUserAccountID, checkin_info.android_id);
  /external/chromium_org/google_apis/gcm/protocol/
mcs.proto 78 ANDROID_ID = 2;
112 // ANDROID_ID = 2
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SecureTest.java 35 private static final String STRING_VALUE_SETTING = Secure.ANDROID_ID;
  /external/chromium_org/google_apis/gcm/engine/
mcs_client.h 87 // |android_id| and |security_token| are optional if this is not a new
93 void Login(uint64 android_id, uint64 security_token);
rmq_store.cc 89 bool LoadDeviceCredentials(uint64* android_id, uint64* security_token);
292 bool RMQStore::Backend::LoadDeviceCredentials(uint64* android_id,
302 if (!base::StringToUint64(result, android_id)) {
mcs_client.cc 136 void MCSClient::Login(uint64 android_id, uint64 security_token) {
138 if (android_id != android_id_ && security_token != security_token_) {
139 DCHECK(android_id);
142 android_id_ = android_id;
  /external/chromium_org/google_apis/gcm/tools/
mcs_probe.cc 57 const char kAndroidIdSwitch[] = "android_id";
163 uint64 android_id() const { return android_id_; } function in class:gcm::__anon8497::MCSProbe
  /external/chromium_org/google_apis/gcm/base/
mcs_util.cc 64 login_request->set_auth_service(mcs_proto::LoginRequest::ANDROID_ID);
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.provider.Settings.System.html 203 <A NAME="android.provider.Settings.System.ANDROID_ID"></A>
204 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Settings.System.html#ANDROID_ID" target="_top"><code>ANDROID_ID</code></font></A></nobr> </TD>
fields_index_changes.html 70 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ANDROID_ID" class="hiddenlink" target="rightframe">ANDROID_ID</A>
alldiffs_index_changes.html 167 <!-- Field ANDROID_ID -->
168 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ANDROID_ID" class="hiddenlink" target="rightframe">ANDROID_ID</A>
    [all...]
fields_index_all.html 137 <nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ANDROID_ID" class="hiddenlink" target="rightframe">ANDROID_ID</A>
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 479 new String[] { Settings.Secure.ANDROID_ID }, null,
494 values.put(Settings.NameValueTable.NAME, Settings.Secure.ANDROID_ID);
498 Slog.e(TAG, "Unable to generate new ANDROID_ID for user " + userHandle);
501 Slog.d(TAG, "Generated and saved new ANDROID_ID [" + newAndroidIdValue
    [all...]
DatabaseHelper.java 292 Settings.Secure.ANDROID_ID,
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /frameworks/base/docs/html/about/versions/
android-4.2.jd 365 android.provider.Settings.Secure#ANDROID_ID} number), they will provide the same value for each
  /frameworks/base/docs/html/reference/com/google/android/gms/ads/identifier/
AdvertisingIdClient.html 754 identifiers for ads purposes (such as use of <code>ANDROID_ID</code> in
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java     [all...]
  /frameworks/base/docs/html/google/play/licensing/
adding-licensing.jd 434 <code>android.Settings.Secure.ANDROID_ID</code>, which is unique to each device.
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/
user_comments_for_2_to_3.xml     [all...]

Completed in 619 milliseconds

1 2