Searched refs:operation (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/app/
H A DIAlarmManager.aidl27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
H A DAlarmManager.java122 * @param operation Action to perform when the alarm goes off;
137 public void set(int type, long triggerAtTime, PendingIntent operation) { argument
139 mService.set(type, triggerAtTime, operation);
175 * @param operation Action to perform when the alarm goes off;
191 PendingIntent operation) {
193 mService.setRepeating(type, triggerAtTime, interval, operation);
236 * @param operation Action to perform when the alarm goes off;
257 PendingIntent operation) {
259 mService.setInexactRepeating(type, triggerAtTime, interval, operation);
269 * @param operation IntentSende
190 setRepeating(int type, long triggerAtTime, long interval, PendingIntent operation) argument
256 setInexactRepeating(int type, long triggerAtTime, long interval, PendingIntent operation) argument
274 cancel(PendingIntent operation) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSyncQueue.java58 public boolean add(SyncOperation operation) { argument
59 return add(operation, null /* this is not coming from the database */);
62 private boolean add(SyncOperation operation, argument
64 // - if an operation with the same key exists and this one should run earlier,
66 // - if an operation with the same key exists and if this one should run
68 // - if no operation exists then add the new one
69 final String operationKey = operation.key;
74 if (existingOperation.expedited == operation.expedited) {
76 Math.min(existingOperation.earliestRunTime, operation.earliestRunTime);
82 if (operation
111 remove(SyncOperation operation) argument
[all...]
H A DSyncManager.java766 // If this operation is expedited and there is a sync in progress then
767 // reschedule the current operation and send a cancel for it.
794 Log.v(TAG, "scheduleSyncOperation: dropping duplicate sync operation "
813 void maybeRescheduleSync(SyncResult syncResult, SyncOperation operation) { argument
816 Log.d(TAG, "encountered error(s) during the sync: " + syncResult + ", " + operation);
819 operation = new SyncOperation(operation);
824 if (operation.extras.getBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, false)) {
825 operation.extras.remove(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF);
830 // If the operation succeede
[all...]
H A DContentProvider.java208 for (ContentProviderOperation operation : operations) {
209 if (operation.isReadOperation()) {
210 enforceReadPermission(operation.getUri());
213 if (operation.isWriteOperation()) {
214 enforceWritePermission(operation.getUri());
596 * deletion, allowing the operation to affect multiple rows in a directory.
816 * @throws OperationApplicationException thrown if any operation fails.
H A DContentProviderNative.java444 for (ContentProviderOperation operation : operations) {
445 operation.writeToParcel(data, 0);
H A DContentResolver.java893 * Start an asynchronous sync operation. If you want to monitor the progress
924 * Start an asynchronous sync operation. If you want to monitor the progress
1062 * actually be started if other syncs are ahead of it in the sync operation queue. This means
1203 * Returns true if there is currently a sync operation for the given
1358 long durationMillis, Uri uri, String operation, String selection) {
1371 operation,
1357 maybeLogUpdateToEventLog( long durationMillis, Uri uri, String operation, String selection) argument
/frameworks/base/obex/javax/obex/
H A DServerRequestHandler.java54 * an OBEX operation and a Connection ID was specified, no Connection ID will be
215 * @param operation contains the headers sent by the client and allows new
223 public int onPut(Operation operation) { argument
236 * @param operation contains the headers sent by the client and allows new
244 public int onGet(Operation operation) { argument
/frameworks/base/tools/preload/
H A DWritePreloadedClassFile.java100 for (Operation operation : proc.operations) {
101 LoadedClass loadedClass = operation.loadedClass;
137 for (Operation operation : proc.operations) {
139 = Policy.isPreloadable(operation.loadedClass);
141 toPreload.add(operation.loadedClass);
H A DLoadedClass.java115 for (Operation operation : ops) {
116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name);
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java158 public void set(int type, long triggerAtTime, PendingIntent operation) { argument
159 setRepeating(type, triggerAtTime, 0, operation);
163 PendingIntent operation) {
164 if (operation == null) {
173 alarm.operation = operation;
176 removeLocked(operation);
188 PendingIntent operation) {
189 if (operation == null) {
205 setRepeating(type, triggerAtTime, interval, operation);
162 setRepeating(int type, long triggerAtTime, long interval, PendingIntent operation) argument
187 setInexactRepeating(int type, long triggerAtTime, long interval, PendingIntent operation) argument
293 remove(PendingIntent operation) argument
302 removeLocked(PendingIntent operation) argument
309 removeLocked(ArrayList<Alarm> alarmList, PendingIntent operation) argument
606 public PendingIntent operation; field in class:AlarmManagerService.Alarm
[all...]
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_rel.c232 T_DRM_Rights * ro, uint8_t * operation,
244 if (operation == NULL) {
266 if (strcmp((char *)operation, "play") == 0) {
269 } else if (strcmp((char *)operation, "display") == 0) {
272 } else if (strcmp((char *)operation, "execute") == 0) {
275 } else if (strcmp((char *)operation, "print") == 0) {
282 if (operation == NULL) {
289 operation);
298 if (operation == NULL) { /* If father element node is not exit then return */
306 operation);
231 drm_getRightValue(uint8_t * buffer, int32_t bufferLen, T_DRM_Rights * ro, uint8_t * operation, uint8_t oper_char) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java137 // Build an operation to assert values match provider
156 // Build an operation to assert values match provider
439 private int operationGetType(ContentProviderOperation operation) argument
443 return field.getInt(operation);
446 private Uri operationGetUri(ContentProviderOperation operation) argument
450 return (Uri) field.get(operation);
453 private String operationGetSelection(ContentProviderOperation operation) argument
457 return (String) field.get(operation);
460 private String[] operationGetSelectionArgs(ContentProviderOperation operation) argument
464 return (String[]) field.get(operation);
467 operationGetValues(ContentProviderOperation operation) argument
474 operationGetExpectedCount(ContentProviderOperation operation) argument
481 operationGetValuesBackReferences(ContentProviderOperation operation) argument
488 operationGetSelectionArgsBackReferences( ContentProviderOperation operation) argument
[all...]
/frameworks/base/libs/ui/
H A DRegion.cpp162 return operation(rhs, op_or);
165 return operation(rhs, op_and);
168 return operation(rhs, op_nand);
170 const Region Region::operation(const Rect& rhs, int op) const {
179 return operation(rhs, op_or);
182 return operation(rhs, op_and);
185 return operation(rhs, op_nand);
187 const Region Region::operation(const Region& rhs, int op) const {
219 return operation(rhs, dx, dy, op_or);
222 return operation(rh
[all...]
H A DFramebufferNativeWindow.cpp278 int operation, ...)
280 switch (operation) {
277 perform(ANativeWindow* window, int operation, ...) argument
/frameworks/base/include/ui/
H A DFramebufferNativeWindow.h70 static int perform(ANativeWindow* window, int operation, ...);
H A DRegion.h136 const Region operation(const Rect& rhs, int op) const;
137 const Region operation(const Region& rhs, int op) const;
138 const Region operation(const Region& rhs, int dx, int dy, int op) const;
/frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
H A DImportTestProvider.java96 TestCase.fail("There is no operation.");
107 ContentProviderOperation operation = operations.get(i);
108 ContentValues contentValues = operation.resolveValueBackReferences(
112 ContentProviderOperation operation = operations.get(i);
113 ContentValues actualContentValues = operation.resolveValueBackReferences(
115 final Uri uri = operation.getUri();
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java339 private void checkRange(final String operation, int start, int end) { argument
341 throw new IndexOutOfBoundsException(operation + " " +
349 throw new IndexOutOfBoundsException(operation + " " +
355 throw new IndexOutOfBoundsException(operation + " " +
H A DSpannableStringBuilder.java933 private void checkRange(final String operation, int start, int end) { argument
935 throw new IndexOutOfBoundsException(operation + " " +
943 throw new IndexOutOfBoundsException(operation + " " +
949 throw new IndexOutOfBoundsException(operation + " " +
/frameworks/base/include/surfaceflinger/
H A DSurface.h206 static int perform(ANativeWindow* window, int operation, ...);
213 int perform(int operation, va_list args);
/frameworks/base/libs/surfaceflinger_client/
H A DSurface.cpp447 // this is a client-side operation, the surface is destroyed, unmap
480 // no operation are allowed from the client (eg: dequeue/queue), this
483 LOGE("[Surface] invalid operation (identity=%u)", mIdentity);
546 int operation, ...) {
548 va_start(args, operation);
550 int res = self->perform(operation, args);
716 int Surface::perform(int operation, va_list args) argument
723 switch (operation) {
545 perform(ANativeWindow* window, int operation, ...) argument
/frameworks/base/include/ui/egl/
H A Dandroid_natives.h219 int operation, ... );
/frameworks/base/core/java/android/view/
H A DViewDebug.java1037 private static <T> long profileViewOperation(View view, final ViewOperation<T> operation) { argument
1044 T[] data = operation.pre();
1046 operation.run(data);
1048 operation.post(data);
/frameworks/base/opengl/include/GLES2/
H A Dgl2ext.h723 GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation);
726 typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation);

Completed in 302 milliseconds

12