Searched refs:operation (Results 101 - 125 of 156) sorted by relevance

1234567

/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerShellCommand.java80 private void checkPermission(String operation) throws Exception { argument
90 + " not permitted to " + operation);
/frameworks/native/include/gui/
H A DSurface.h186 static int hook_perform(ANativeWindow* window, int operation, ...);
237 virtual int perform(int operation, va_list args);
323 // operation. It is initialized to 1.
327 // dequeue operation. It is initialized to 1.
331 // deuque operation. It is initialized to PIXEL_FORMAT_RGBA_8888.
335 // at the next deuque operation. It is initialized to 0.
339 // operation. It defaults to NATIVE_WINDOW_TIMESTAMP_AUTO, which means that
344 // queue operation. It defaults to Dataspace::UNKNOWN, which
349 // queue operation. There is no HDR metadata by default.
/frameworks/native/libs/gui/include/gui/
H A DSurface.h186 static int hook_perform(ANativeWindow* window, int operation, ...);
237 virtual int perform(int operation, va_list args);
323 // operation. It is initialized to 1.
327 // dequeue operation. It is initialized to 1.
331 // deuque operation. It is initialized to PIXEL_FORMAT_RGBA_8888.
335 // at the next deuque operation. It is initialized to 0.
339 // operation. It defaults to NATIVE_WINDOW_TIMESTAMP_AUTO, which means that
344 // queue operation. It defaults to Dataspace::UNKNOWN, which
349 // queue operation. There is no HDR metadata by default.
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp486 const sp<VolumeShaper::Operation>& operation) {
499 status = operation.get() == nullptr
502 ? tmp : operation->writeToParcel(&data);
922 sp<VolumeShaper::Operation> operation; local
934 operation = new VolumeShaper::Operation();
935 status = operation->readFromParcel(&data);
938 status = (status_t)applyVolumeShaper(configuration, operation);
484 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java1035 Slog.v(TAG, " Not scheduling sync operation: "
1496 * Schedule a sync operation with JobScheduler.
1505 Slog.e(TAG, "Can't schedule null sync operation.");
1570 // and if the current operation is exempted with no minDelay,
1624 Slog.v(TAG, "scheduling sync operation " + syncOperation.toString());
1722 private void maybeRescheduleSync(SyncResult syncResult, SyncOperation operation) { argument
1725 Log.d(TAG, "encountered error(s) during the sync: " + syncResult + ", " + operation);
1731 if (operation.extras.getBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, false)) {
1732 operation.extras.remove(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF);
1735 if (operation
3158 getSyncWakeLock(SyncOperation operation) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DConnectivityServiceMock.java716 PendingIntent operation) {
721 public void releasePendingNetworkRequest(PendingIntent operation) { argument
733 PendingIntent operation) {
715 pendingRequestForNetwork(NetworkCapabilities networkCapabilities, PendingIntent operation) argument
732 pendingListenForNetwork(NetworkCapabilities networkCapabilities, PendingIntent operation) argument
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamTrack.cpp512 const VolumeShaper::Operation& operation) {
515 sp<VolumeShaper::Operation> spOperation = new VolumeShaper::Operation(operation);
510 applyVolumeShaper( const VolumeShaper::Configuration& configuration, const VolumeShaper::Operation& operation) argument
/frameworks/base/core/proto/android/server/
H A Dalarmmanagerservice.proto98 // Canonical count of (operation.send() - onSendFinished()) and listener
174 optional .android.app.PendingIntentProto operation = 9;
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
H A DSecureBox.java341 AesGcmOperation operation, SecretKey key, byte[] nonce, byte[] text, byte[] aad)
352 if (operation == AesGcmOperation.DECRYPT) {
340 aesGcmInternal( AesGcmOperation operation, SecretKey key, byte[] nonce, byte[] text, byte[] aad) argument
/frameworks/ml/nn/runtime/
H A DModelBuilder.cpp348 // Tracks how many inputs are needed for each operation to be ready to run.
372 const Operation& operation = mOperations[opIndex]; local
377 for (uint32_t operandIndex : operation.outputs) {
/frameworks/av/include/media/
H A Dmediaplayer.h266 const sp<media::VolumeShaper::Operation>& operation);
H A DMediaPlayerInterface.h135 * buffer, unless an error occurs or the copy operation is
154 const sp<media::VolumeShaper::Operation>& operation);
/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h266 const sp<media::VolumeShaper::Operation>& operation);
/frameworks/av/services/audioflinger/
H A DPlaybackTracks.h93 const sp<media::VolumeShaper::Operation>& operation);
/frameworks/base/media/java/android/media/
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
/frameworks/ml/nn/runtime/test/
H A DTestPartitioningRandom.cpp85 // Each operation we generate has a signature (described in more
87 // operations they can execute by checking operation signatures. Once
92 // operation.
141 // The signature of an operation consists of the operation type (e.g.,
143 // operation type for which the activation function is inapplicable).
149 // class (such as inputCount() and operation index).
201 // Representation of operations: vector index is operation number,
202 // vector value is operation's output operands.
350 static Signature getSignature(const HidlModel& model, const Operation& operation);
444 getSignature(const HidlModel& model, const Operation& operation) argument
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.h217 static bool canAccessSensor(const Sensor& sensor, const char* operation,
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerService.java1159 public void onPendingSaveUi(int operation, IBinder token) { argument
1161 Preconditions.checkArgument(operation == AutofillManager.PENDING_UI_OPERATION_CANCEL
1162 || operation == AutofillManager.PENDING_UI_OPERATION_RESTORE,
1163 "invalid operation: %d", operation);
1168 service.onPendingSaveUi(operation, token);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1217 const sp<VolumeShaper::Operation>& operation) {
1228 return mAudioOutput->applyVolumeShaper(configuration, operation);
2393 const sp<VolumeShaper::Operation>& operation)
2402 status = mTrack->applyVolumeShaper(configuration, operation);
2404 (void)mVolumeHandler->applyVolumeShaper(configuration, operation);
2414 // Unducking is an idempotent operation, same if applied back-to-back.
2417 ALOGV("applyVolumeShaper: Attempting to forward missed operation: %s %s",
2418 configuration->toString().c_str(), operation->toString().c_str());
2424 ALOGD("Forward VolumeShaper operation to recycled track %p", track.get());
2425 (void)track->applyVolumeShaper(configuration, operation);
1215 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
2391 applyVolumeShaper( const sp<VolumeShaper::Configuration>& configuration, const sp<VolumeShaper::Operation>& operation) argument
[all...]
H A DMediaPlayerService.h140 const sp<media::VolumeShaper::Operation>& operation) override;
358 const sp<media::VolumeShaper::Operation>& operation) override;
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackage.java1038 * the operation to make sure the operation wouldn't result in the target activities having
1042 * @param operation add, set or update.
1043 * @throws IllegalArgumentException if the operation would result in going over the max
1047 @ShortcutOperation int operation) {
1059 } else if (shortcut.isDynamic() && (operation != ShortcutService.OPERATION_SET)) {
1068 if (operation != ShortcutService.OPERATION_UPDATE) {
1077 if (operation == ShortcutService.OPERATION_UPDATE) {
1085 if (original.isFloating() && (operation == ShortcutService.OPERATION_UPDATE)) {
1093 if (operation !
1046 enforceShortcutCountsBeforeOperation(List<ShortcutInfo> newList, @ShortcutOperation int operation) argument
[all...]
/frameworks/rs/script_api/
H A Drs_object_types.spec115 relevant to an allocation or an operation on an allocation.
/frameworks/av/media/libaaudio/src/core/
H A DAudioStream.cpp425 const android::media::VolumeShaper::Operation& operation __unused) {
/frameworks/av/media/libmediaplayerservice/include/
H A DMediaPlayerInterface.h135 * buffer, unless an error occurs or the copy operation is
154 const sp<media::VolumeShaper::Operation>& operation);
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp1232 sp<VolumeShaper::Operation> operation; local
1239 operation = VolumeShaperHelper::convertJobjectToOperation(
1241 ALOGV("applyVolumeShaper operation: %s", operation->toString().c_str());
1243 VolumeShaper::Status status = lpTrack->applyVolumeShaper(configuration, operation);

Completed in 1579 milliseconds

1234567