Home
last modified time | relevance | path

Searched refs:reply (Results 1 – 25 of 36) sorted by relevance

12

/packages/services/Car/libvehiclemonitor/native/
DIVehicleMonitor.cpp45 Parcel data, reply; in setAppPriority() local
51 status_t status = remote()->transact(SET_APP_PRIORITY, data, &reply); in setAppPriority()
53 int32_t exceptionCode = reply.readExceptionCode(); in setAppPriority()
68 Parcel data, reply; in setMonitorListener() local
71 status_t status = remote()->transact(SET_MONITOR_LISTENER, data, &reply); in setMonitorListener()
95 status_t BnVehicleMonitor::onTransact(uint32_t code, const Parcel& data, Parcel* reply, in onTransact() argument
103 CHECK_INTERFACE(IVehicleMonitor, data, reply); in onTransact()
112 reply->writeNoException(); in onTransact()
116 CHECK_INTERFACE(IVehicleMonitor, data, reply); in onTransact()
120 reply->writeNoException(); in onTransact()
[all …]
DIVehicleMonitorListener.cpp43 Parcel data, reply; in onAppViolation() local
50 remote()->transact(ON_APP_VIOLATION, data, &reply, IBinder::FLAG_ONEWAY); in onAppViolation()
58 status_t BnVehicleMonitorListener::onTransact(uint32_t code, const Parcel& data, Parcel* reply, in onTransact() argument
63 CHECK_INTERFACE(IVehicleMonitorListener, data, reply); in onTransact()
75 return BBinder::onTransact(code, data, reply, flags); in onTransact()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java200 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
220 reply.setHeader(HeaderSet.WHO, uuid); in onConnect()
230 reply.setHeader(HeaderSet.TARGET, remote); in onConnect()
273 public int onAbort(HeaderSet request, HeaderSet reply) { in onAbort() argument
288 public int onDelete(final HeaderSet request, final HeaderSet reply) { in onDelete() argument
295 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup, in onSetPath() argument
353 HeaderSet reply = new HeaderSet(); in onGet() local
465 return pullVcardListing(appParam, appParamValue, reply, op, name); in onGet()
469 return pullVcardEntry(appParam, appParamValue, op, reply, name, mCurrentPath); in onGet()
473 return pullPhonebook(appParam, appParamValue, reply, op, name); in onGet()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapServer.java362 SapMessage reply = new SapMessage(SapMessage.ID_DISCONNECT_RESP); in run() local
363 sendClientMessage(reply); in run()
501 SapMessage reply = new SapMessage(SapMessage.ID_CONNECT_RESP); in onConnectRequest() local
507 reply = null; in onConnectRequest()
512 reply.setConnectionStatus(SapMessage.CON_STATUS_ERROR_CONNECTION); in onConnectRequest()
520 reply.setConnectionStatus(SapMessage.CON_STATUS_OK_ONGOING_CALL); in onConnectRequest()
531 reply = null; in onConnectRequest()
533 reply = new SapMessage(SapMessage.ID_CONNECT_RESP); in onConnectRequest()
534 reply.setConnectionStatus(SapMessage.CON_STATUS_ERROR_CONNECTION); in onConnectRequest()
535 sendClientMessage(reply); in onConnectRequest()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
DMnsObexServer.java54 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
69 reply.setHeader(HeaderSet.WHO, MNS_TARGET); in onConnect()
74 public void onDisconnect(final HeaderSet request, HeaderSet reply) { in onDisconnect() argument
114 public int onAbort(final HeaderSet request, HeaderSet reply) { in onAbort() argument
120 public int onSetPath(final HeaderSet request, HeaderSet reply, in onSetPath() argument
/packages/apps/Settings/src/com/android/settings/notification/
DZenModeEventRuleSettings.java144 final int reply = Integer.parseInt((String) newValue); in onCreateInternal()
145 if (reply == mEvent.reply) return false; in onCreateInternal()
146 mEvent.reply = reply; in onCreateInternal()
159 mReply.setValue(Integer.toString(mEvent.reply)); in updateControlsInternal()
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DEventHandler.java27 public static <T> EventHandler<T> createStub(boolean reply) { in createStub() argument
28 return new Stub<T>(reply); in createStub()
35 private Stub(boolean reply) { in Stub() argument
36 mReply = reply;} in Stub()
/packages/apps/Calendar/src/com/android/calendar/
DAsyncQueryServiceHelper.java342 Message reply = args.handler.obtainMessage(args.token); in onHandleIntent() local
343 reply.obj = args; in onHandleIntent()
344 reply.arg1 = args.op; in onHandleIntent()
348 + reply.what); in onHandleIntent()
351 reply.sendToTarget(); in onHandleIntent()
DContactsAsyncHelper.java116 Message reply = ContactsAsyncHelper.this.obtainMessage(msg.what); in handleMessage() local
117 reply.arg1 = msg.arg1; in handleMessage()
118 reply.obj = msg.obj; in handleMessage()
119 reply.sendToTarget(); in handleMessage()
/packages/apps/Dialer/java/com/android/incallui/
DContactsAsyncHelper.java229 Message reply = ContactsAsyncHelper.this.mResultHandler.obtainMessage(msg.what); in handleMessage() local
230 reply.arg1 = msg.arg1; in handleMessage()
231 reply.obj = msg.obj; in handleMessage()
232 reply.sendToTarget(); in handleMessage()
DCallerInfoAsyncQuery.java632 Message reply = args.handler.obtainMessage(msg.what); in handleMessage() local
633 reply.obj = args; in handleMessage()
634 reply.arg1 = msg.arg1; in handleMessage()
636 reply.sendToTarget(); in handleMessage()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DDevelopmentFragment.java908 Parcel reply = Parcel.obtain(); in updateFlingerOptions() local
910 flinger.transact(1010, data, reply, 0); in updateFlingerOptions()
912 int showCpu = reply.readInt(); in updateFlingerOptions()
914 int enableGL = reply.readInt(); in updateFlingerOptions()
915 int showUpdates = reply.readInt(); in updateFlingerOptions()
918 int showBackground = reply.readInt(); in updateFlingerOptions()
919 int disableOverlays = reply.readInt(); in updateFlingerOptions()
921 reply.recycle(); in updateFlingerOptions()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DMapMceTestFragment.java71 Button reply = (Button) v.findViewById(R.id.reply); in onCreateView() local
84 reply.setOnClickListener(new View.OnClickListener() { in onCreateView()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java306 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
331 reply.setHeader(HeaderSet.WHO, uuid); in onConnect()
341 reply.setHeader(HeaderSet.TARGET, remote); in onConnect()
349 reply.setHeader(THREADED_MAIL_HEADER_ID, THREAD_MAIL_KEY); in onConnect()
394 public int onAbort(HeaderSet request, HeaderSet reply) { in onAbort() argument
786 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup, in onSetPath() argument
1555 public int onDelete(HeaderSet request, HeaderSet reply) { in onDelete() argument
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DTestActivity.java482 public int onConnect(HeaderSet request, HeaderSet reply) { in onConnect() argument
543 public int onSetPath(HeaderSet request, HeaderSet reply, boolean backup, boolean create) { in onSetPath() argument
548 public int onDelete(HeaderSet request, HeaderSet reply) { in onDelete() argument
/packages/apps/Settings/src/com/android/settings/development/
DDevelopmentSettings.java1102 Parcel reply = Parcel.obtain(); in updateFlingerOptions() local
1104 flinger.transact(1010, data, reply, 0); in updateFlingerOptions()
1106 int showCpu = reply.readInt(); in updateFlingerOptions()
1108 int enableGL = reply.readInt(); in updateFlingerOptions()
1109 int showUpdates = reply.readInt(); in updateFlingerOptions()
1112 int showBackground = reply.readInt(); in updateFlingerOptions()
1113 int disableOverlays = reply.readInt(); in updateFlingerOptions()
1115 reply.recycle(); in updateFlingerOptions()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DMessageHeaderView.java259 mReplyButton = findViewById(R.id.reply); in onFinishInflate()
904 if (id == R.id.reply) { in onClick()
905 ComposeActivity.reply(getContext(), getAccount(), mMessage); in onClick()
936 m.findItem(R.id.reply).setVisible(defaultReplyAll); in onClick()
DConversationFooterView.java82 ComposeActivity.reply(getContext(), getAccount(), message); in onClick()
/packages/services/Car/libvehiclemonitor/include/
DIVehicleMonitorListener.h45 Parcel* reply,
DIVehicleMonitor.h53 Parcel* reply,
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallerInfoAsyncQueryFactoryFixture.java43 void reply() { in reply() method in CallerInfoAsyncQueryFactoryFixture.Request
DTelecomSystemTest.java628 CallerInfoAsyncQueryFactoryFixture.Request::reply); in startOutgoingPhoneCallWaitForBroadcaster()
774 CallerInfoAsyncQueryFactoryFixture.Request::reply); in startIncomingPhoneCall()
/packages/apps/Bluetooth/src/com/android/bluetooth/
DObexRejectServer.java67 public int onConnect(HeaderSet request, HeaderSet reply) { in onConnect() argument
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/
DAnalyticsUtils.java105 } else if (id == R.id.reply) { in getMenuItemString()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DSecureConversationViewFragment.java299 ComposeActivity.reply(getActivity(), mAccount, msg); in handleReply()

12