Searched refs:base (Results 276 - 281 of 281) sorted by relevance

<<1112

/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java7958 // dataset to base future restore-at-install operations from?
9602 File base = new File(Environment.getDataDirectory(), "backup");
9603 File enableFile = new File(base, BACKUP_ENABLE_FILE);
9608 File base = new File(Environment.getDataDirectory(), "backup");
9609 File enableFile = new File(base, BACKUP_ENABLE_FILE);
9627 File base = new File(Environment.getDataDirectory(), "backup");
9628 File enableFile = new File(base, BACKUP_ENABLE_FILE);
9629 File stage = new File(base, BACKUP_ENABLE_FILE + "-stage");
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp485 // Although HAL API allows configurable base value for the truncated
488 // Hard code value of base to 2 here.
489 params.buckets[i].base = 2;
498 params.buckets[i].max_period, params.buckets[i].base,
/frameworks/base/core/java/android/app/
H A DActivityThread.java4619 * Creates a new Configuration only if override would modify base. Otherwise returns base.
4620 * @param base The base configuration.
4621 * @param override The update to apply to the base configuration. Can be null.
4622 * @return A Configuration representing base with override applied.
4624 private static Configuration createNewConfigAndUpdateIfNotNull(@NonNull Configuration base, argument
4627 return base;
4629 Configuration newConfig = new Configuration(base);
4642 * from the base globa
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp2527 void *dst_pointer = info->mData->base();
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java2189 final String base = userHandle == UserHandle.USER_SYSTEM
2194 Log.v(LOG_TAG, "Opening " + base);
2196 return new JournaledFile(new File(base), new File(base + ".tmp"));
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java7223 // really a PendingIntent, so there is no base Intent, and the caller isn't
9097 ActivityRecord base = null;
9106 base = tmp;
9108 top = base;
9113 rti.baseActivity = (base != null) ? base.intent.getComponent() : null;
9530 Slog.w(TAG, "No component for base intent of task: " + tr);
21221 // the handler time base is uptime. All this means is that we may

Completed in 381 milliseconds

<<1112