Searched refs:operation (Results 26 - 50 of 59) sorted by relevance

123

/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java240 boolean remove(final PendingIntent operation) { argument
246 if (alarm.operation.equals(operation)) {
276 if (alarm.operation.getTargetPackage().equals(packageName)) {
306 if (UserHandle.getUserId(alarm.operation.getCreatorUid()) == userHandle) {
334 if (a.operation.getTargetPackage().equals(packageName)) {
410 if (Intent.ACTION_TIME_TICK.equals(a.operation.getIntent().getAction())) {
419 if (packagePrio == null) packagePrio = mPriorities.get(a.operation.getCreatorPackage());
422 mPriorities.put(a.operation.getCreatorPackage(), packagePrio);
527 a.repeatInterval, a.operation, batc
680 removeImpl(PendingIntent operation) argument
689 setImpl(int type, long triggerAtTime, long windowLength, long interval, PendingIntent operation, boolean isStandalone, WorkSource workSource, AlarmManager.AlarmClockInfo alarmClock) argument
755 setImplLocked(int type, long when, long whenElapsed, long windowLength, long maxWhen, long interval, PendingIntent operation, boolean isStandalone, boolean doValidate, WorkSource workSource, AlarmManager.AlarmClockInfo alarmClock, int userId) argument
1254 removeLocked(PendingIntent operation) argument
1498 public final PendingIntent operation; field in class:AlarmManagerService.Alarm
[all...]
H A DConnectivityService.java3591 PendingIntent operation) {
3592 checkNotNull(operation, "PendingIntent cannot be null.");
3599 if (DBG) log("pendingRequest for " + networkRequest + " to trigger " + operation);
3600 NetworkRequestInfo nri = new NetworkRequestInfo(networkRequest, operation,
3607 private void releasePendingNetworkRequestWithDelay(PendingIntent operation) { argument
3610 getCallingUid(), 0, operation), mReleasePendingIntentDelayMs);
3614 public void releasePendingNetworkRequest(PendingIntent operation) { argument
3616 getCallingUid(), 0, operation));
3636 PendingIntent operation) {
3590 pendingRequestForNetwork(NetworkCapabilities networkCapabilities, PendingIntent operation) argument
3635 pendingListenForNetwork(NetworkCapabilities networkCapabilities, PendingIntent operation) argument
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java93 private void maybeLog(String operation, String iface, LinkAddress address) { argument
95 Log.d(TAG, operation + ": " + address + " on " + iface +
100 private void maybeLog(String operation, Object o) { argument
102 Log.d(TAG, operation + ": " + o.toString());
/frameworks/av/media/mtp/
H A DMtpServer.cpp170 MtpOperationCode operation = mRequest.getOperationCode(); local
173 ALOGV("operation: %s", MtpDebug::getOperationCodeName(operation));
177 bool dataIn = (operation == MTP_OPERATION_SEND_OBJECT_INFO
178 || operation == MTP_OPERATION_SET_OBJECT_REFERENCES
179 || operation == MTP_OPERATION_SET_OBJECT_PROP_VALUE
180 || operation == MTP_OPERATION_SET_DEVICE_PROP_VALUE);
199 mData.setOperationCode(operation);
317 MtpOperationCode operation = mRequest.getOperationCode(); local
322 if (mSendObjectHandle != kInvalidObjectHandle && operation !
819 doGetPartialObject(MtpOperationCode operation) argument
[all...]
H A DMtpServer.h141 MtpResponseCode doGetPartialObject(MtpOperationCode operation);
H A DMtpDevice.cpp777 bool MtpDevice::sendRequest(MtpOperationCode operation) { argument
778 ALOGV("sendRequest: %s\n", MtpDebug::getOperationCodeName(operation));
780 mRequest.setOperationCode(operation);
819 bool MtpDevice::writeDataHeader(MtpOperationCode operation, int dataLength) { argument
820 mData.setOperationCode(operation);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_pic_order_cnt.c140 while (pSliceHeader->decRefPicMarking.operation[i].
143 if (pSliceHeader->decRefPicMarking.operation[i].
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:__anon647
H A Dh264bsd_dpb.c716 while (mark->operation[i].memoryManagementControlOperation)
718 switch (mark->operation[i].memoryManagementControlOperation)
724 mark->operation[i].differenceOfPicNums);
728 status = Mmcop2(dpb, mark->operation[i].longTermPicNum);
735 mark->operation[i].differenceOfPicNums,
736 mark->operation[i].longTermFrameIdx);
742 mark->operation[i].maxLongTermFrameIdx);
756 mark->operation[i].longTermFrameIdx);
761 default: /* invalid memory management control operation */
777 * memory management control operation
[all...]
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java161 String operation = mTokenizer.nextArg();
162 if (ARGUMENT_INSERT.equals(operation)) {
164 } else if (ARGUMENT_DELETE.equals(operation)) {
166 } else if (ARGUMENT_UPDATE.equals(operation)) {
168 } else if (ARGUMENT_QUERY.equals(operation)) {
170 } else if (ARGUMENT_CALL.equals(operation)) {
172 } else if (ARGUMENT_READ.equals(operation)) {
175 throw new IllegalArgumentException("Unsupported operation: " + operation);
/frameworks/native/include/gui/
H A DSurface.h117 static int hook_perform(ANativeWindow* window, int operation, ...);
154 virtual int perform(int operation, va_list args);
205 // operation. It is initialized to 1.
209 // dequeue operation. It is initialized to 1.
213 // deuque operation. It is initialized to PIXEL_FORMAT_RGBA_8888.
217 // at the next deuque operation. It is initialized to 0.
221 // operation. It defaults to NATIVE_WINDOW_TIMESTAMP_AUTO, which means that
/frameworks/native/include/ui/
H A DFramebufferNativeWindow.h74 static int perform(ANativeWindow* window, int operation, ...);
H A DRegion.h156 const Region operation(const Rect& rhs, int op) const;
157 const Region operation(const Region& rhs, int op) const;
158 const Region operation(const Region& rhs, int dx, int dy, int op) const;
/frameworks/ex/common/java/com/android/common/content/
H A DSQLiteContentProvider.java220 final ContentProviderOperation operation = operations.get(i);
221 if (i > 0 && operation.isYieldAllowed()) {
231 results[i] = operation.apply(this, results, i);
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java341 private void checkRange(final String operation, int start, int end) { argument
343 throw new IndexOutOfBoundsException(operation + " " +
351 throw new IndexOutOfBoundsException(operation + " " +
357 throw new IndexOutOfBoundsException(operation + " " +
H A DSpannableStringBuilder.java1009 private void checkRange(final String operation, int start, int end) { argument
1011 throw new IndexOutOfBoundsException(operation + " " +
1018 throw new IndexOutOfBoundsException(operation + " " +
1023 throw new IndexOutOfBoundsException(operation + " " +
/frameworks/base/core/java/android/content/
H A DContentProvider.java264 ContentProviderOperation operation = operations.get(i);
265 Uri uri = operation.getUri();
270 operation = new ContentProviderOperation(operation, true);
271 operations.set(i, operation);
273 if (operation.isReadOperation()) {
279 if (operation.isWriteOperation()) {
820 * provider, but that call has been rejected for the operation given
942 * signal to ensure correct operation on older versions of the Android Framework in
958 * @param cancellationSignal A signal to cancel the operation i
[all...]
/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/ui/
H A DFramebufferNativeWindow.cpp330 int operation, ...)
332 switch (operation) {
329 perform(ANativeWindow* , int operation, ...) argument
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1841 * data transfers, and warn the user or delay the operation until another
2395 * The operation is an Intent broadcast that goes to a broadcast receiver that
2399 * The operation Intent is delivered with two extras, a {@link Network} typed
2415 * @param operation Action to perform when the network is available (corresponds
2419 public void requestNetwork(NetworkRequest request, PendingIntent operation) { argument
2420 checkPendingIntent(operation);
2422 mService.pendingRequestForNetwork(request.networkCapabilities, operation);
2432 * @param operation A PendingIntent equal (as defined by {@link Intent#filterEquals}) to the
2437 public void releaseNetworkRequest(PendingIntent operation) { argument
2438 checkPendingIntent(operation);
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java914 // operation in the specified window
1001 Log.v(TAG, "scheduleSyncOperation: dropping duplicate sync operation "
1036 void maybeRescheduleSync(SyncResult syncResult, SyncOperation operation) { argument
1039 Log.d(TAG, "encountered error(s) during the sync: " + syncResult + ", " + operation);
1042 operation = new SyncOperation(operation, 0L /* newRunTimeFromNow */);
1047 if (operation.extras.getBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, false)) {
1048 operation.extras.remove(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF);
1051 if (operation.extras.getBoolean(ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY, false)) {
1053 Log.d(TAG, "not retrying sync operation becaus
1961 getSyncWakeLock(SyncOperation operation) argument
[all...]
/frameworks/base/libs/hwui/
H A DRenderNode.cpp588 inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { argument
589 operation->defer(mDeferStruct, saveCount, mLevel, clipToBounds);
612 inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { argument
614 mReplayStruct.mRenderer.eventMark(operation->name());
616 operation->replay(mReplayStruct, saveCount, mLevel, clipToBounds);
860 * Every 'simple' state operation that affects just the matrix and alpha (or other factors of
863 * defer vs replay logic, per operation
/frameworks/native/libs/gui/
H A DSurface.cpp168 int Surface::hook_perform(ANativeWindow* window, int operation, ...) { argument
170 va_start(args, operation);
172 return c->perform(operation, args);
393 int Surface::perform(int operation, va_list args) argument
396 switch (operation) {
/frameworks/native/services/sensorservice/
H A DSensorService.h228 static bool verifyCanAccessSensor(const Sensor& sensor, const char* operation);
/frameworks/base/core/java/android/view/
H A DViewDebug.java621 private static <T> long profileViewOperation(View view, final ViewOperation<T> operation) { argument
628 T[] data = operation.pre();
631 operation.run(data);
634 operation.post(data);

Completed in 606 milliseconds

123