/frameworks/native/services/audiomanager/ |
D | IAudioManager.cpp | 86 return remote()->transact(PLAYER_ATTRIBUTES, data, &reply, IBinder::FLAG_ONEWAY); in playerAttributes() 96 return remote()->transact(PLAYER_EVENT, data, &reply, IBinder::FLAG_ONEWAY); in playerEvent() 103 return remote()->transact(RELEASE_PLAYER, data, &reply, IBinder::FLAG_ONEWAY); in releasePlayer() 127 return remote()->transact(RECORDER_EVENT, data, &reply, IBinder::FLAG_ONEWAY); in recorderEvent() 134 return remote()->transact(RELEASE_RECORDER, data, &reply, IBinder::FLAG_ONEWAY); in releaseRecorder() 142 return remote()->transact(PLAYER_SESSION_ID, data, &reply, IBinder::FLAG_ONEWAY); in playerSessionId() 153 return remote()->transact(PORT_EVENT, data, &reply, IBinder::FLAG_ONEWAY); in portEvent()
|
/frameworks/native/libs/binder/ |
D | IUidObserver.cpp | 39 remote()->transact(ON_UID_GONE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in onUidGone() 47 remote()->transact(ON_UID_ACTIVE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in onUidActive() 56 remote()->transact(ON_UID_IDLE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in onUidIdle() 67 remote()->transact(ON_UID_STATE_CHANGED_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in onUidStateChanged() 74 remote()->transact(ON_UID_PROC_ADJ_CHANGED_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in onUidProcAdjChanged()
|
D | IBatteryStats.cpp | 69 remote()->transact(NOTE_START_AUDIO_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in noteStartAudio() 76 remote()->transact(NOTE_STOP_AUDIO_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in noteStopAudio() 88 remote()->transact(NOTE_RESET_AUDIO_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in noteResetAudio()
|
D | IActivityManager.cpp | 194 IBinder::FLAG_ONEWAY); in logFgsApiBegin() 209 remote()->transact(LOG_FGS_API_END_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in logFgsApiEnd() 226 IBinder::FLAG_ONEWAY); in logFgsApiStateChanged()
|
D | IResultReceiver.cpp | 40 remote()->transact(OP_SEND, data, nullptr, IBinder::FLAG_ONEWAY); in send()
|
/frameworks/av/media/libmedia/ |
D | IRemoteDisplayClient.cpp | 50 remote()->transact(ON_DISPLAY_CONNECTED, data, &reply, IBinder::FLAG_ONEWAY); in onDisplayConnected() 57 remote()->transact(ON_DISPLAY_DISCONNECTED, data, &reply, IBinder::FLAG_ONEWAY); in onDisplayDisconnected() 65 remote()->transact(ON_DISPLAY_ERROR, data, &reply, IBinder::FLAG_ONEWAY); in onDisplayError()
|
D | IStreamSource.cpp | 69 ON_BUFFER_AVAILABLE, data, &reply, IBinder::FLAG_ONEWAY); in onBufferAvailable() 147 remote()->transact(QUEUE_BUFFER, data, &reply, IBinder::FLAG_ONEWAY); in queueBuffer() 164 remote()->transact(ISSUE_COMMAND, data, &reply, IBinder::FLAG_ONEWAY); in issueCommand()
|
D | IMediaRecorderClient.cpp | 45 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY); in notify()
|
D | IMediaPlayerClient.cpp | 48 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY); in notify()
|
/frameworks/av/camera/ |
D | ICameraClient.cpp | 55 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY); in notifyCallback() 71 remote()->transact(DATA_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY); in dataCallback() 83 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY); in dataCallbackTimestamp() 93 IBinder::FLAG_ONEWAY); in recordingFrameHandleCallbackTimestamp() 116 IBinder::FLAG_ONEWAY); in recordingFrameHandleCallbackTimestampBatch()
|
/frameworks/native/libs/binder/rust/sys/ |
D | BinderBindings.hpp | 82 FLAG_ONEWAY = FLAG_ONEWAY, enumerator
|
/frameworks/native/libs/graphicsenv/ |
D | IGpuService.cpp | 48 remote()->transact(BnGpuService::SET_GPU_STATS, data, &reply, IBinder::FLAG_ONEWAY); in setGpuStats() 61 remote()->transact(BnGpuService::SET_TARGET_STATS, data, &reply, IBinder::FLAG_ONEWAY); in setTargetStats() 77 IBinder::FLAG_ONEWAY); in setTargetStatsArray() 90 IBinder::FLAG_ONEWAY); in addVulkanEngineName() 99 IBinder::FLAG_ONEWAY); in setUpdatableDriverPath() 108 IBinder::FLAG_ONEWAY); in toggleAngleAsSystemDriver()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | DejankUtils.java | 19 import static android.os.IBinder.FLAG_ONEWAY; 66 if ((flags & FLAG_ONEWAY) == FLAG_ONEWAY || sBlockingIpcs.empty()
|
/frameworks/native/libs/gui/ |
D | IProducerListener.cpp | 41 remote()->transact(ON_BUFFER_RELEASED, data, &reply, IBinder::FLAG_ONEWAY); in onBufferReleased() 65 remote()->transact(ON_BUFFERS_DISCARDED, data, &reply, IBinder::FLAG_ONEWAY); in onBuffersDiscarded()
|
/frameworks/native/libs/vr/libvr_manager/ |
D | vr_manager.cpp | 38 remote()->transact(ON_VR_STATE_CHANGED, data, &reply, IBinder::FLAG_ONEWAY); in onVrStateChanged() 71 data, &reply, IBinder::FLAG_ONEWAY); in onPersistentVrStateChanged()
|
/frameworks/native/libs/permission/ |
D | IAppOpsCallback.cpp | 42 remote()->transact(OP_CHANGED_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY); in opChanged()
|
/frameworks/av/services/mediaresourcemanager/ |
D | IMediaResourceMonitor.cpp | 37 remote()->transact(NOTIFY_RESOURCE_GRANTED, data, &reply, IBinder::FLAG_ONEWAY); in notifyResourceGranted()
|
/frameworks/native/libs/binder/rust/src/ |
D | lib.rs | 132 TransactionCode, TransactionFlags, FIRST_CALL_TRANSACTION, FLAG_CLEAR_BUF, FLAG_ONEWAY,
|
/frameworks/base/core/java/android/os/ |
D | IBinder.java | 170 int FLAG_ONEWAY = 0x00000001; field
|
D | BinderProxy.java | 533 if (warnOnBlocking && ((flags & FLAG_ONEWAY) == 0) in transact() 581 if ((flags & FLAG_ONEWAY) == 0 && AppOpsManager.isListeningForOpNoted()) { in transact() 682 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY); in dumpAsync()
|
/frameworks/av/media/utils/ |
D | ISchedulingPolicyService.cpp | 50 uint32_t flags = asynchronous ? IBinder::FLAG_ONEWAY : 0; in requestPriority()
|
/frameworks/native/libs/binder/include/binder/ |
D | IBinder.h | 79 FLAG_ONEWAY = 0x00000001, enumerator
|
/frameworks/native/include/binder/ |
D | IBinder.h | 79 FLAG_ONEWAY = 0x00000001, enumerator
|
/frameworks/native/libs/binder/ndk/include_ndk/android/ |
D | binder_ibinder.h | 50 FLAG_ONEWAY = 0x01, enumerator
|
/frameworks/base/core/jni/ |
D | android_os_HwBinder.cpp | 156 bool isOneway = (flags & IBinder::FLAG_ONEWAY) != 0; in onTransact() 288 bool isOneway = (flags & IBinder::FLAG_ONEWAY) != 0; in JHwBinder_native_transact()
|