Searched defs:getLong (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/core/java/android/os/
H A DSystemProperties.java92 public static long getLong(String key, long def) { method in class:SystemProperties
H A DBuild.java446 public static final long TIME = getLong("ro.build.date.utc") * 1000;
469 private static long getLong(String property) { method in class:Build
H A DBundle.java954 public long getLong(String key) { method in class:Bundle
956 return getLong(key, 0L);
966 public long getLong(String key, long defaultValue) { method in class:Bundle
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java299 long getLong(String key, long defValue); method in interface:SharedPreferences
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java73 public long getLong(int columnIndex) { method in class:AbstractWindowedCursor
75 return mWindow.getLong(mPos, columnIndex);
H A DMatrixCursor.java251 public long getLong(int column) { method in class:MatrixCursor
H A DMergeCursor.java114 public long getLong(int column) method in class:MergeCursor
116 return mCursor.getLong(column);
H A DCursor.java285 long getLong(int columnIndex); method in interface:Cursor
H A DCursorWrapper.java105 public long getLong(int columnIndex) { method in class:CursorWrapper
106 return mCursor.getLong(columnIndex);
H A DAbstractCursor.java86 abstract public long getLong(int column); method in class:AbstractCursor
220 mCurrentRowID = Long.valueOf(getLong(mRowIdColumnIndex));
H A DCursorWindow.java504 public long getLong(int row, int column) { method in class:CursorWindow
549 * The result is determined by invoking {@link #getLong} and converting the
558 return (short) getLong(row, column);
565 * The result is determined by invoking {@link #getLong} and converting the
574 return (int) getLong(row, column);
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java203 public long getLong(int column) method in class:SortCursor
205 return mCursor.getLong(column);
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java514 public long getLong(String property, long def) { method in class:TypedProperties
647 public long getLong(String property) { method in class:TypedProperties
648 return getLong(property, 0L);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockSettingsService.java155 public long getLong(String key, long defaultValue, int userId) throws RemoteException { method in class:LockSettingsService
H A DLockPatternUtils.java405 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
471 return !isSecure() && getLong(DISABLE_LOCKSCREEN_KEY, 0) != 0;
728 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
733 (int) getLong(PASSWORD_TYPE_ALTERNATE_KEY,
744 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
811 long salt = getLong(LOCK_PASSWORD_SALT_KEY, 0);
863 long mode = getLong(PASSWORD_TYPE_KEY, 0);
864 long backupMode = getLong(PASSWORD_TYPE_ALTERNATE_KEY, 0);
883 getLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING)
887 && (getLong(PASSWORD_TYPE_KE
1190 private long getLong(String secureSettingKey, long defaultValue) { method in class:LockPatternUtils
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java72 public long getLong(int columnIndex) { method in class:MockCursor
/frameworks/base/media/java/android/media/
H A DMediaFormat.java198 public final long getLong(String name) { method in class:MediaFormat
H A DMetadata.java458 public long getLong(final int key) { method in class:Metadata
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java244 public long getLong(String key, long defValue) { method in class:SharedPreferencesImpl
H A DDownloadManager.java1076 + cursor.getLong(cursor.getColumnIndex(COLUMN_ID)));
1101 return Settings.Global.getLong(context.getContentResolver(),
1119 return Settings.Global.getLong(context.getContentResolver(),
1254 return (int) getLong(columnIndex);
1258 public long getLong(int columnIndex) { method in class:DownloadManager.CursorTranslator
1264 return super.getLong(columnIndex);
1275 long destinationType = getLong(getColumnIndex(Downloads.Impl.COLUMN_DESTINATION));
1287 long downloadId = getLong(getColumnIndex(Downloads.Impl._ID));
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java271 entry.activeTime = getLong(activeTime, i, UNKNOWN);
272 entry.rxBytes = getLong(rxBytes, i, UNKNOWN);
273 entry.rxPackets = getLong(rxPackets, i, UNKNOWN);
274 entry.txBytes = getLong(txBytes, i, UNKNOWN);
275 entry.txPackets = getLong(txPackets, i, UNKNOWN);
276 entry.operations = getLong(operations, i, UNKNOWN);
369 entry.rxBytes = getLong(input.rxBytes, i, 0L);
370 entry.rxPackets = getLong(input.rxPackets, i, 0L);
371 entry.txBytes = getLong(input.txBytes, i, 0L);
372 entry.txPackets = getLong(inpu
618 private static long getLong(long[] array, int i, long value) { method in class:NetworkStatsHistory
[all...]
/frameworks/base/core/java/android/provider/
H A DSettings.java773 long newValuesVersion = SystemProperties.getLong(mVersionSystemProperty, 0);
1142 public static long getLong(ContentResolver cr, String name, long def) { method in class:Settings.System
1176 public static long getLong(ContentResolver cr, String name) method in class:Settings.System
2896 public static long getLong(ContentResolver cr, String name, long def) { method in class:Settings.Secure
2930 public static long getLong(ContentResolver cr, String name) method in class:Settings.Secure
5488 public static long getLong(ContentResolver cr, String name, long def) { method in class:Settings.Global
5516 public static long getLong(ContentResolver cr, String name) method in class:Settings.Global

Completed in 3118 milliseconds