Searched defs:operation (Results 1 - 24 of 24) sorted by path

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c580 u32 operation; local
628 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &operation);
631 if (operation > 6)
637 pDecRefPicMarking->operation[i].
638 memoryManagementControlOperation = operation;
639 if ((operation == 1) || (operation == 3))
644 pDecRefPicMarking->operation[i].differenceOfPicNums =
647 if (operation == 2)
652 pDecRefPicMarking->operation[
[all...]
H A Dh264bsd_slice_header.h65 /* structure to store data of one reference picture list reordering operation */
80 /* structure to store data of one DPB memory management control operation */
104 memoryManagementOperation_t operation[MAX_NUM_MMC_OPERATIONS]; member in struct:__anon884
/frameworks/av/media/mtp/
H A DMtpDevice.cpp767 bool MtpDevice::sendRequest(MtpOperationCode operation) { argument
768 ALOGV("sendRequest: %s\n", MtpDebug::getOperationCodeName(operation));
770 mRequest.setOperationCode(operation);
809 bool MtpDevice::writeDataHeader(MtpOperationCode operation, int dataLength) { argument
810 mData.setOperationCode(operation);
H A DMtpServer.cpp168 MtpOperationCode operation = mRequest.getOperationCode(); local
171 ALOGV("operation: %s", MtpDebug::getOperationCodeName(operation));
175 bool dataIn = (operation == MTP_OPERATION_SEND_OBJECT_INFO
176 || operation == MTP_OPERATION_SET_OBJECT_REFERENCES
177 || operation == MTP_OPERATION_SET_OBJECT_PROP_VALUE
178 || operation == MTP_OPERATION_SET_DEVICE_PROP_VALUE);
197 mData.setOperationCode(operation);
310 MtpOperationCode operation = mRequest.getOperationCode(); local
315 if (mSendObjectHandle != kInvalidObjectHandle && operation !
767 doGetPartialObject(MtpOperationCode operation) argument
[all...]
/frameworks/base/core/java/android/app/
H A DAlarmManager.java141 * @param operation Action to perform when the alarm goes off;
158 public void set(int type, long triggerAtMillis, PendingIntent operation) { argument
159 setImpl(type, triggerAtMillis, legacyExactLength(), 0, operation, null);
194 * @param operation Action to perform when the alarm goes off;
212 long intervalMillis, PendingIntent operation) {
213 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, operation, null);
230 * @param operation Action to perform when the alarm goes off;
247 PendingIntent operation) {
248 setImpl(type, windowStartMillis, windowLengthMillis, 0, operation, null);
255 public void setExact(int type, long triggerAtMillis, PendingIntent operation) { argument
211 setRepeating(int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
246 setWindow(int type, long windowStartMillis, long windowLengthMillis, PendingIntent operation) argument
260 set(int type, long triggerAtMillis, long windowMillis, long intervalMillis, PendingIntent operation, WorkSource workSource) argument
265 setImpl(int type, long triggerAtMillis, long windowMillis, long intervalMillis, PendingIntent operation, WorkSource workSource) argument
371 setInexactRepeating(int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
386 cancel(PendingIntent operation) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentResolver.java436 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
437 * If the operation is canceled, then {@link OperationCanceledException} will be thrown
750 * @param cancellationSignal A signal to cancel the operation in progress,
751 * or null if none. If the operation is canceled, then
877 * @param cancellationSignal A signal to cancel the operation in progress, or null if
878 * none. If the operation is canceled, then
1033 * @param cancellationSignal A signal to cancel the operation in progress,
1034 * or null if none. If the operation is canceled, then
1695 * Start an asynchronous sync operation. If you want to monitor the progress
1728 * Start an asynchronous sync operation
2223 maybeLogUpdateToEventLog( long durationMillis, Uri uri, String operation, String selection) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java486 * @param operation The operation to be reported as defined internally.
487 * @param geofenceId The id of the geofence the operation is related to.
488 * @param operationStatus The status of the operation as defined in GeofenceHardware class. This
491 private void reportGeofenceOperationStatus(int operation, int geofenceId, int operationStatus) { argument
493 Message message = mGeofenceHandler.obtainMessage(operation);
500 * Used to report the status of a Geofence Add operation.
508 * Used to report the status of a Geofence Remove operation.
516 * Used to report the status of a Geofence Pause operation.
524 * Used to report the status of a Geofence Resume operation
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java1007 private void checkRange(final String operation, int start, int end) { argument
1009 throw new IndexOutOfBoundsException(operation + " " +
1016 throw new IndexOutOfBoundsException(operation + " " +
1021 throw new IndexOutOfBoundsException(operation + " " +
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 + " " +
/frameworks/base/core/java/android/view/
H A DViewDebug.java601 private static <T> long profileViewOperation(View view, final ViewOperation<T> operation) { argument
608 T[] data = operation.pre();
611 operation.run(data);
614 operation.post(data);
/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/hwui/
H A DDisplayList.cpp454 inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { argument
455 operation->defer(mDeferStruct, saveCount, mLevel, clipToBounds);
471 inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { argument
473 mReplayStruct.mRenderer.eventMark(operation->name());
475 operation->replay(mReplayStruct, saveCount, mLevel, clipToBounds);
497 * Every 'simple' operation that affects just the matrix and alpha (or other factors of
500 * defer vs replay logic, per operation
/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/services/java/com/android/server/
H A DAlarmManagerService.java186 boolean remove(final PendingIntent operation) { argument
192 if (alarm.operation.equals(operation)) {
219 if (alarm.operation.getTargetPackage().equals(packageName)) {
246 if (UserHandle.getUserId(alarm.operation.getCreatorUid()) == userHandle) {
271 if (a.operation.getTargetPackage().equals(packageName)) {
392 a.repeatInterval, a.operation, batch.standalone, doValidate, a.workSource);
504 PendingIntent operation, WorkSource workSource) {
511 set(type, triggerAtTime, windowLength, interval, operation, false, workSource);
515 PendingIntent operation, boolea
503 set(int type, long triggerAtTime, long windowLength, long interval, PendingIntent operation, WorkSource workSource) argument
514 set(int type, long triggerAtTime, long windowLength, long interval, PendingIntent operation, boolean isStandalone, WorkSource workSource) argument
564 setImplLocked(int type, long when, long whenElapsed, long maxWhen, long interval, PendingIntent operation, boolean isStandalone, boolean doValidate, WorkSource workSource) argument
716 remove(PendingIntent operation) argument
725 removeLocked(PendingIntent operation) argument
1083 public PendingIntent operation; field in class:AlarmManagerService.Alarm
[all...]
/frameworks/base/services/java/com/android/server/content/
H A DSyncManager.java828 // operation in the specified window
917 Log.v(TAG, "scheduleSyncOperation: dropping duplicate sync operation "
936 void maybeRescheduleSync(SyncResult syncResult, SyncOperation operation) { argument
939 Log.d(TAG, "encountered error(s) during the sync: " + syncResult + ", " + operation);
942 operation = new SyncOperation(operation);
947 if (operation.extras.getBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, false)) {
948 operation.extras.remove(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF);
953 // If the operation succeeded to some extent then retry immediately.
957 if (operation
[all...]
H A DSyncQueue.java85 public boolean add(SyncOperation operation) { argument
86 return add(operation, null /* this is not coming from the database */);
91 * If an operation is added that already exists, the existing operation is updated if the newly
92 * added operation occurs before (or the interval overlaps).
94 private boolean add(SyncOperation operation, argument
96 // If an operation with the same key exists and this one should run sooner/overlaps,
97 // replace the run interval of the existing operation with this new one.
98 // Complications: what if the existing operation is expedited but the new operation ha
156 remove(SyncOperation operation) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6554 // operation. To this, start with the base screen size and compute the
9607 boolean reclaimSomeSurfaceMemoryLocked(WindowStateAnimator winAnimator, String operation, argument
9614 winAnimator.mSession.mPid, operation);
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaSmsCbProgramData.java78 /** Service category operation (add/delete/clear). */
97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages, argument
99 mOperation = operation;
134 * Returns the service category operation, e.g. {@link #OPERATION_ADD_CATEGORY}.
183 return "CdmaSmsCbProgramData{operation=" + mOperation + ", category=" + mCategory
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java173 public static void checkGlError(String operation) { argument
176 throw new RuntimeException("GL Operation '" + operation + "' caused error "
188 private static void assertNonUiThread(String operation) { argument
190 throw new RuntimeException("Attempting to perform GL operation '" + operation
/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp40 int flock(int fd, int operation) { argument
151 // Determine the lock operation (2nd argument) to the flock().
/frameworks/native/libs/gui/
H A DSurface.cpp154 int Surface::hook_perform(ANativeWindow* window, int operation, ...) { argument
156 va_start(args, operation);
158 return c->perform(operation, args);
352 int Surface::perform(int operation, va_list args) argument
355 switch (operation) {
/frameworks/native/libs/ui/
H A DFramebufferNativeWindow.cpp330 int operation, ...)
332 switch (operation) {
329 perform(ANativeWindow* window, int operation, ...) argument
H A DRegion.cpp303 return operation(rhs, op_or);
306 return operation(rhs, op_xor);
309 return operation(rhs, op_and);
312 return operation(rhs, op_nand);
314 const Region Region::operation(const Rect& rhs, int op) const { function in class:android::Region
323 return operation(rhs, op_or);
326 return operation(rhs, op_xor);
329 return operation(rhs, op_and);
332 return operation(rhs, op_nand);
334 const Region Region::operation(cons function in class:android::Region
380 const Region Region::operation(const Region& rhs, int dx, int dy, int op) const { function in class:android::Region
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp14634 void GLTrace_glCoverageOperationNV(GLenum operation) { argument
14640 // copy argument operation
14644 arg_operation->add_intvalue((int)operation);
14649 glContext->hooks->gl.glCoverageOperationNV(operation);

Completed in 721 milliseconds