Home
last modified time | relevance | path

Searched refs:operations (Results 1 – 25 of 33) sorted by relevance

12

/aosp14/frameworks/base/tools/preload/
H A DLoadedClass.java84 private static int calculateMedian(List<Operation> operations) { in calculateMedian() argument
85 int size = operations.size(); in calculateMedian()
92 times[i] = operations.get(i).exclusiveTimeMicros(); in calculateMedian()
H A DProc.java54 final List<Operation> operations = new ArrayList<Operation>(); field in Proc
94 operations.add(o); in startOperation()
H A DWritePreloadedClassFile.java100 for (Operation operation : proc.operations) { in main()
137 for (Operation operation : proc.operations) { in addAllClassesFrom()
H A DPrintHtmlDiff.java45 for (Operation op : proc.operations) { in main()
/aosp14/system/core/libutils/
H A DLruCache_fuzz.cpp36 static const std::vector<std::function<void(FuzzedDataProvider*, FuzzCache*)>> operations = { variable
69 uint8_t op = dataProvider.ConsumeIntegral<uint8_t>() % operations.size(); in LLVMFuzzerTestOneInput()
70 operations[op](&dataProvider, &cache); in LLVMFuzzerTestOneInput()
H A DLooper_fuzz.cpp40 std::vector<std::function<void(FuzzedDataProvider*, sp<Looper>, Pipe)>> operations = { variable
78 uint8_t op = dataProvider.ConsumeIntegralInRange<uint8_t>(0, operations.size() - 1); in LLVMFuzzerTestOneInput()
79 operations[op](&dataProvider, looper, pipeObj); in LLVMFuzzerTestOneInput()
H A DString16_fuzz.cpp24 operations = { variable
79 operations[index](dataProvider, str1, str2); in callFunc()
104 uint8_t op = dataProvider.ConsumeIntegralInRange<uint8_t>(0, operations.size() - 1); in LLVMFuzzerTestOneInput()
H A DString8_fuzz.cpp31 operations = { variable
204 operations[index](dataProvider, str1, str2); in callFunc()
221 uint8_t op = dataProvider.ConsumeIntegralInRange<uint8_t>(0, operations.size() - 1); in LLVMFuzzerTestOneInput()
222 operations[op](&dataProvider, &str_one_utf8, &str_two_utf8); in LLVMFuzzerTestOneInput()
/aosp14/frameworks/base/core/tests/benchmarks/src/android/net/
H A DNetworkStatsBenchmark.java56 recycle.operations = 0; in setUp()
72 recycle.operations = 0; in setUp()
/aosp14/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.md13 Because SyncManager executes sync operations as JobScheduler jobs, sync operations are subject
27 made by foreground apps are special cased such that the resulting sync operations will be
108 - When the device is dozing, no sync operations will be executed.
110 - Normally, sync operations are subject to App-Standby, which throttles jobs owned by background
/aosp14/frameworks/base/core/java/android/net/netstats/
H A DNetworkStatsDataMigrationUtils.java368 final long[] operations; in readPlatformHistory() local
381 operations = new long[bucketStart.length]; in readPlatformHistory()
396 operations = readVarLongArray(in); in readPlatformHistory()
410 rxBytes[i], rxPackets[i], txBytes[i], txPackets[i], operations[i]); in readPlatformHistory()
/aosp14/frameworks/base/core/java/android/content/
H A DContentProviderClient.java560 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch()
562 return applyBatch(mAuthority, operations); in applyBatch()
568 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch() argument
570 Objects.requireNonNull(operations, "operations"); in applyBatch()
575 operations); in applyBatch()
H A DLoggingContentInterface.java273 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch() argument
275 try (Logger l = new Logger("applyBatch", authority, operations)) { in applyBatch() argument
277 return l.setResult(delegate.applyBatch(authority, operations)); in applyBatch()
H A DContentProvider.java479 String authority, ArrayList<ContentProviderOperation> operations) in applyBatch() argument
482 int numOperations = operations.size(); in applyBatch()
485 ContentProviderOperation operation = operations.get(i); in applyBatch()
493 operations.set(i, operation); in applyBatch()
515 operations); in applyBatch()
2642 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch() argument
2644 return applyBatch(operations); in applyBatch()
2648 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch()
2650 final int numOperations = operations.size(); in applyBatch()
2653 results[i] = operations.get(i).apply(this, results, i); in applyBatch()
H A DContentProviderNative.java207 final ArrayList<ContentProviderOperation> operations = in onTransact() local
210 operations.add(i, ContentProviderOperation.CREATOR.createFromParcel(data)); in onTransact()
213 authority, operations); in onTransact()
623 String authority, ArrayList<ContentProviderOperation> operations) in applyBatch() argument
631 data.writeInt(operations.size()); in applyBatch()
632 for (ContentProviderOperation operation : operations) { in applyBatch()
H A DContentInterface.java84 @NonNull ArrayList<ContentProviderOperation> operations) in applyBatch() argument
H A DIContentProvider.java139 String authority, ArrayList<ContentProviderOperation> operations) in applyBatch() argument
/aosp14/frameworks/base/test-mock/src/android/test/mock/
H A DMockContentProvider.java65 String authority, ArrayList<ContentProviderOperation> operations) in applyBatch() argument
67 return MockContentProvider.this.applyBatch(authority, operations); in applyBatch()
308 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { in applyBatch() argument
H A DMockIContentProvider.java113 String authority, ArrayList<ContentProviderOperation> operations) { in applyBatch() argument
/aosp14/system/core/code_coverage/seccomp_policy/
H A Dcode_coverage.policy.def11 // coverage tool uses different operations on different passes
/aosp14/frameworks/base/proto/src/
H A Dipconnectivity.proto252 // The number of query operations recorded.
255 // The number of query operations returning A IPv4 records.
258 // The number of query operations returning AAAA IPv6 records.
270 // The number of connect() operations recorded.
273 // The number of connect() operations done in blocking mode.
277 // The number of connect() operations with IPv6 socket address.
280 // The time it took for successful blocking connect() operations to complete
290 // Counts of all error values returned by failed connect() operations.
/aosp14/frameworks/base/core/proto/android/server/
H A Dbiometrics.proto168 // Total number of operations that have been handled, not including the current one if one
172 // A list of recent past operations in the order which they were handled
/aosp14/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java153 bundle.putLong(REPORT_KEY_OPERATIONS, entry.operations); in getBandwidthStats()
/aosp14/system/core/fs_mgr/libsnapshot/
H A Dpartition_cow_creator.cpp188 for (const auto& iop : update->operations()) { in GetCowSize()
/aosp14/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDevice.cpp353 ScopedLocalRef<jintArray> operations(env, static_cast<jintArray>(env->NewIntArray(size))); in android_mtp_MtpDevice_get_device_info() local
355 ScopedIntArrayRW elements(env, operations.get()); in android_mtp_MtpDevice_get_device_info()
363 env->SetObjectField(info, field_deviceInfo_operationsSupported, operations.get()); in android_mtp_MtpDevice_get_device_info()

12