Searched refs:operations (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/tools/preload/
H A DLoadedClass.java30 /** Load operations. */
33 /** Static initialization operations. */
83 /** Calculates the median duration for a list of operations. */
84 private static int calculateMedian(List<Operation> operations) { argument
85 int size = operations.size();
92 times[i] = operations.get(i).exclusiveTimeMicros();
H A DProc.java50 /** Number of operations. */
53 /** Sequential list of operations that happened in this process. */
54 final List<Operation> operations = new ArrayList<Operation>(); field in class:Proc
94 operations.add(o);
H A DWritePreloadedClassFile.java89 for (Operation operation : proc.operations) {
126 for (Operation operation : proc.operations) {
H A DPrintHtmlDiff.java45 for (Operation op : proc.operations) {
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java93 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
95 return mContentProvider.applyBatch(operations);
H A DContentProvider.java182 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
184 for (ContentProviderOperation operation : operations) {
193 return ContentProvider.this.applyBatch(operations);
742 * same number of elements as the operations will be returned. It is implementation-specific
743 * how many, if any, operations will have been successfully applied if a call to
745 * @param operations the operations to apply
750 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
752 final int numOperations = operations.size();
755 results[i] = operations
[all...]
H A DContentProviderNative.java168 final ArrayList<ContentProviderOperation> operations =
171 operations.add(i, ContentProviderOperation.CREATOR.createFromParcel(data));
173 final ContentProviderResult[] results = applyBatch(operations);
437 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
443 data.writeInt(operations.size());
444 for (ContentProviderOperation operation : operations) {
H A DIContentProvider.java60 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
H A DContentResolver.java603 * same number of elements as the operations will be returned. It is implementation-specific
604 * how many, if any, operations will have been successfully applied if a call to
607 * @param operations the operations to apply
615 ArrayList<ContentProviderOperation> operations)
622 return provider.applyBatch(operations);
614 applyBatch(String authority, ArrayList<ContentProviderOperation> operations) argument
/frameworks/base/core/tests/coretests/src/android/pim/vcard/
H A DImportTestResolver.java62 ArrayList<ContentProviderOperation> operations) {
64 return mProvider.applyBatch(operations);
127 ArrayList<ContentProviderOperation> operations) {
128 if (operations == null) {
132 final int size = operations.size();
140 ContentProviderOperation operation = operations.get(i);
145 ContentProviderOperation operation = operations.get(i);
61 applyBatch(String authority, ArrayList<ContentProviderOperation> operations) argument
126 applyBatch( ArrayList<ContentProviderOperation> operations) argument
H A DVCardTestsBase.java89 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java59 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
61 return MockContentProvider.this.applyBatch(operations);
213 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { argument
H A DMockIContentProvider.java78 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { argument

Completed in 199 milliseconds