Searched defs:operation (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/support/compat/java/android/support/v4/app/
H A DAlarmManagerCompat.java41 * @param operation Action to perform when the alarm goes off;
56 PendingIntent showIntent, PendingIntent operation) {
59 operation);
62 operation);
79 * Under normal system operation, it will not dispatch these
98 * @param operation Action to perform when the alarm goes off;
114 long triggerAtMillis, PendingIntent operation) {
116 alarmManager.setAndAllowWhileIdle(type, triggerAtMillis, operation);
118 alarmManager.set(type, triggerAtMillis, operation);
142 * @param operation Actio
55 setAlarmClock(AlarmManager alarmManager, long triggerTime, PendingIntent showIntent, PendingIntent operation) argument
113 setAndAllowWhileIdle(AlarmManager alarmManager, int type, long triggerAtMillis, PendingIntent operation) argument
158 setExact(AlarmManager alarmManager, int type, long triggerAtMillis, PendingIntent operation) argument
218 setExactAndAllowWhileIdle(AlarmManager alarmManager, int type, long triggerAtMillis, PendingIntent operation) argument
[all...]
/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java102 private void executeOperation(ListenerOperation<TListener> operation, TListener listener) { argument
104 operation.execute(listener);
111 protected void foreach(final ListenerOperation<TListener> operation) { argument
118 executeOperation(operation, listener.getKey());
123 executeOperation(operation, listener.getKey());
/frameworks/base/media/java/android/media/
H A DPlayerProxy.java63 "No player to proxy for start operation, player already released?", e);
76 "No player to proxy for pause operation, player already released?", e);
89 "No player to proxy for stop operation, player already released?", e);
103 "No player to proxy for setVolume operation, player already released?", e);
117 "No player to proxy for setPan operation, player already released?", e);
131 "No player to proxy for setStartDelayMs operation, player already released?",
139 * @param operation
144 @NonNull VolumeShaper.Operation operation) {
146 mConf.getIPlayer().applyVolumeShaper(configuration, operation);
149 "No player to proxy for applyVolumeShaper operation,"
142 applyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
[all...]
H A DPlayerBase.java301 * To be called by the subclass whenever an operation is potentially restricted.
374 * operation changes requested on it.
380 * @param operation a {@code VolumeShaper.Operation}.
386 @NonNull VolumeShaper.Operation operation);
486 @NonNull VolumeShaper.Operation operation) {
489 pb.playerApplyVolumeShaper(configuration, operation);
384 playerApplyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
484 applyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
H A DSoundPool.java396 @Nullable VolumeShaper.Operation operation) {
485 * @param status the status of the load operation (0 = success)
394 playerApplyVolumeShaper( @onNull VolumeShaper.Configuration configuration, @Nullable VolumeShaper.Operation operation) argument
H A DVolumeShaper.java72 * @param operation the {@code operation} to apply.
77 public void apply(@NonNull Operation operation) { argument
78 /* void */ applyPlayer(new VolumeShaper.Configuration(mId), operation);
91 * If the {@code operation} is {@link VolumeShaper.Operation#PLAY} then the
94 * If the {@code operation} is
99 * @param operation the {@code operation} to apply to the {@code VolumeShaper}
108 @NonNull Configuration configuration, @NonNull Operation operation, boolean join) {
111 new Operation.Builder(operation)
107 replace( @onNull Configuration configuration, @NonNull Operation operation, boolean join) argument
168 applyPlayer( @onNull VolumeShaper.Configuration configuration, @NonNull VolumeShaper.Operation operation) argument
1219 Builder(@onNull VolumeShaper.Operation operation) argument
[all...]
/frameworks/av/media/libaudioclient/
H A DTrackPlayerBase.cpp108 const sp<VolumeShaper::Operation>& operation) {
111 VolumeShaper::Status status = mAudioTrack->applyVolumeShaper(configuration, operation);
106 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
H A DIAudioTrack.cpp151 const sp<VolumeShaper::Operation>& operation) {
163 status = operation.get() == nullptr
166 ?: operation->writeToParcel(&data);
260 sp<VolumeShaper::Operation> operation; local
270 operation = new VolumeShaper::Operation();
271 status = operation->readFromParcel(data);
274 status = (status_t)applyVolumeShaper(configuration, operation);
149 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) 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/compile/libbcc/lib/
H A DFileBase.cpp37 int flock(int fd, int operation) { argument
148 // Determine the lock operation (2nd argument) to the flock().
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyStoreCryptoOperationChunkedStreamer.java32 * Helper for streaming a crypto operation's input and output via {@link KeyStore} service's
36 * update and finish operations. Firstly, KeyStore's update operation can consume only a limited
38 * operation may consume less data than provided, in which case the caller has to buffer the
43 * <p>Bidirectional chunked streaming of data via a KeyStore crypto operation is abstracted away as
44 * a {@link Stream} to avoid having this class deal with operation tokens and occasional additional
52 * Bidirectional chunked data stream over a KeyStore crypto operation.
56 * Returns the result of the KeyStore {@code update} operation or null if keystore couldn't
62 * Returns the result of the KeyStore {@code finish} operation or null if keystore couldn't
81 public KeyStoreCryptoOperationChunkedStreamer(Stream operation) { argument
82 this(operation, DEFAULT_MAX_CHUNK_SIZ
85 KeyStoreCryptoOperationChunkedStreamer(Stream operation, int maxChunkSize) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java293 private void warnIfTooLong(long duration, SystemService service, String operation) { argument
296 + operation);
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerShellCommand.java74 private void checkPermission(String operation) throws Exception { argument
84 + " not permitted to " + operation);
/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/native/services/audiomanager/
H A DIPlayer.cpp95 const sp<VolumeShaper::Operation>& operation) {
108 status = operation.get() == nullptr
111 ?: operation->writeToParcel(&data);
113 ALOGW("applyVolumeShaper failed operation parceling: %d", status);
165 sp<VolumeShaper::Operation> operation; local
175 operation = new VolumeShaper::Operation();
176 status = operation->readFromParcel(data);
180 applyVolumeShaper(configuration, operation);
93 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c582 u32 operation; local
630 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &operation);
633 if (operation > 6)
639 pDecRefPicMarking->operation[i].
640 memoryManagementControlOperation = operation;
641 if ((operation == 1) || (operation == 3))
646 pDecRefPicMarking->operation[i].differenceOfPicNums =
649 if (operation == 2)
654 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:__anon788
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java426 private void checkRange(final String operation, int start, int end) { argument
428 throw new IndexOutOfBoundsException(operation + " " +
436 throw new IndexOutOfBoundsException(operation + " " +
442 throw new IndexOutOfBoundsException(operation + " " +
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java91 private void maybeLog(String operation, String iface, LinkAddress address) { argument
93 Log.d(TAG, operation + ": " + address + " on " + iface +
98 private void maybeLog(String operation, Object o) { argument
100 Log.d(TAG, operation + ": " + o.toString());
/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/media/jni/
H A Dandroid_media_VolumeShaper.h186 sp<VolumeShaper::Operation> operation = local
188 return operation;
192 JNIEnv *env, const fields_t &fields, const sp<VolumeShaper::Operation> &operation) {
195 args[0].i = (jint)operation->getFlags();
196 args[1].i = (jint)operation->getReplaceId();
197 args[2].f = (jfloat)operation->getXOffset();
191 convertOperationToJobject( JNIEnv *env, const fields_t &fields, const sp<VolumeShaper::Operation> &operation) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DRemoteListenerHelper.java128 protected void foreach(ListenerOperation<TListener> operation) { argument
130 foreachUnsafe(operation);
154 ListenerOperation<TListener> operation = getHandlerOperation(RESULT_INTERNAL_ERROR);
155 foreachUnsafe(operation);
171 private void foreachUnsafe(ListenerOperation<TListener> operation) { argument
173 post(linkedListener.getUnderlyingListener(), operation);
177 private void post(TListener listener, ListenerOperation<TListener> operation) { argument
178 if (operation != null) {
179 mHandler.post(new HandlerRunnable(listener, operation));
239 public HandlerRunnable(TListener listener, ListenerOperation<TListener> operation) { argument
[all...]
/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/av/media/mtp/
H A DMtpDevice.cpp848 bool MtpDevice::sendRequest(MtpOperationCode operation) { argument
849 ALOGV("sendRequest: %s\n", MtpDebug::getOperationCodeName(operation));
851 mRequest.setOperationCode(operation);
/frameworks/base/core/java/android/app/
H A DAlarmManager.java329 * @param operation Action to perform when the alarm goes off;
346 public void set(@AlarmType int type, long triggerAtMillis, PendingIntent operation) { argument
347 setImpl(type, triggerAtMillis, legacyExactLength(), 0, 0, operation, null, null,
417 * @param operation Action to perform when the alarm goes off;
435 long intervalMillis, PendingIntent operation) {
436 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, 0, operation,
468 * @param operation Action to perform when the alarm goes off;
485 PendingIntent operation) {
486 setImpl(type, windowStartMillis, windowLengthMillis, 0, 0, operation,
522 * @param operation Actio
434 setRepeating(@larmType int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
484 setWindow(@larmType int type, long windowStartMillis, long windowLengthMillis, PendingIntent operation) argument
538 setExact(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
593 setAlarmClock(AlarmClockInfo info, PendingIntent operation) argument
601 set(@larmType int type, long triggerAtMillis, long windowMillis, long intervalMillis, PendingIntent operation, WorkSource workSource) argument
643 setImpl(@larmType int type, long triggerAtMillis, long windowMillis, long intervalMillis, int flags, PendingIntent operation, final OnAlarmListener listener, String listenerTag, Handler targetHandler, WorkSource workSource, AlarmClockInfo alarmClock) argument
777 setInexactRepeating(@larmType int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
827 setAndAllowWhileIdle(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
881 setExactAndAllowWhileIdle(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
897 cancel(PendingIntent operation) argument
[all...]

Completed in 4607 milliseconds

123