Home
last modified time | relevance | path

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

12

/packages/services/Car/procfs-inspector/server/
Dserver.cpp44 Parcel data, reply; in readProcessTable() local
45 remote()->transact((uint32_t)IProcfsInspector::Call::READ_PROCESS_TABLE, data, &reply); in readProcessTable()
48 reply.readParcelableVector(&result); in readProcessTable()
57 const Parcel& data, Parcel* reply, uint32_t flags) { in onTransact() argument
60 CHECK_INTERFACE(IProcfsInspector, data, reply); in onTransact()
62 reply->writeNoException(); in onTransact()
63 reply->writeParcelableVector(readProcessTable()); in onTransact()
70 return BBinder::onTransact(code, data, reply, flags); in onTransact()
/packages/apps/Settings/src/com/android/settings/development/
DHardwareOverlaysPreferenceController.java91 final Parcel reply = Parcel.obtain(); in updateHardwareOverlaysSetting() local
93 mSurfaceFlinger.transact(SURFACE_FLINGER_READ_CODE, data, reply, 0 /* flags */); in updateHardwareOverlaysSetting()
94 @SuppressWarnings("unused") final int showCpu = reply.readInt(); in updateHardwareOverlaysSetting()
95 @SuppressWarnings("unused") final int enableGL = reply.readInt(); in updateHardwareOverlaysSetting()
96 @SuppressWarnings("unused") final int showUpdates = reply.readInt(); in updateHardwareOverlaysSetting()
97 @SuppressWarnings("unused") final int showBackground = reply.readInt(); in updateHardwareOverlaysSetting()
98 final int disableOverlays = reply.readInt(); in updateHardwareOverlaysSetting()
100 reply.recycle(); in updateHardwareOverlaysSetting()
DShowSurfaceUpdatesPreferenceController.java90 final Parcel reply = Parcel.obtain(); in updateShowUpdatesSetting() local
92 mSurfaceFlinger.transact(SURFACE_FLINGER_READ_CODE, data, reply, 0 /* flags */); in updateShowUpdatesSetting()
93 @SuppressWarnings("unused") final int showCpu = reply.readInt(); in updateShowUpdatesSetting()
94 @SuppressWarnings("unused") final int enableGL = reply.readInt(); in updateShowUpdatesSetting()
95 final int showUpdates = reply.readInt(); in updateShowUpdatesSetting()
97 reply.recycle(); in updateShowUpdatesSetting()
DShowRefreshRatePreferenceController.java93 final Parcel reply = Parcel.obtain(); in updateShowRefreshRateSetting() local
96 mSurfaceFlinger.transact(SURFACE_FLINGER_CODE, data, reply, 0 /* flags */); in updateShowRefreshRateSetting()
97 final boolean enabled = reply.readBoolean(); in updateShowRefreshRateSetting()
99 reply.recycle(); in updateShowRefreshRateSetting()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java236 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
260 reply.setHeader(HeaderSet.WHO, uuid); in onConnect()
272 reply.setHeader(HeaderSet.TARGET, remote); in onConnect()
311 public int onAbort(HeaderSet request, HeaderSet reply) { in onAbort() argument
330 public int onDelete(final HeaderSet request, final HeaderSet reply) { in onDelete() argument
339 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup, in onSetPath() argument
399 HeaderSet reply = new HeaderSet(); in onGet() local
542 return pullVcardListing(appParam, appParamValue, reply, op, name); in onGet()
545 return pullVcardEntry(appParam, appParamValue, op, reply, name, mCurrentPath); in onGet()
548 return pullPhonebook(appParam, appParamValue, reply, op, name); in onGet()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapServer.java392 SapMessage reply = in run() local
394 sendClientMessage(reply); in run()
557 SapMessage reply = new SapMessage(SapMessage.ID_CONNECT_RESP); in onConnectRequest() local
563 reply = null; in onConnectRequest()
569 reply.setConnectionStatus(SapMessage.CON_STATUS_ERROR_CONNECTION); in onConnectRequest()
577 reply.setConnectionStatus(SapMessage.CON_STATUS_OK_ONGOING_CALL); in onConnectRequest()
588 reply = null; in onConnectRequest()
590 reply = new SapMessage(SapMessage.ID_CONNECT_RESP); in onConnectRequest()
591 reply.setConnectionStatus(SapMessage.CON_STATUS_ERROR_CONNECTION); in onConnectRequest()
592 sendClientMessage(reply); in onConnectRequest()
[all …]
/packages/services/Car/tools/emulator/
Dprop_event_simulator.py81 reply = v.rxMsg();
82 print(reply);
84 value = parseVal(args.value, reply.config[0].value_type)
88 reply = v.rxMsg();
89 print(reply);
/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/Bluetooth/src/com/android/bluetooth/mapclient/
DMnsObexServer.java68 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
84 reply.setHeader(HeaderSet.WHO, MNS_TARGET); in onConnect()
89 public void onDisconnect(final HeaderSet request, HeaderSet reply) { in onDisconnect() argument
139 public int onAbort(final HeaderSet request, HeaderSet reply) { in onAbort() argument
147 public int onSetPath(final HeaderSet request, HeaderSet reply, final boolean backup, in onSetPath() argument
/packages/apps/Settings/src/com/android/settings/notification/zen/
DZenModeEventRuleSettings.java159 final int reply = Integer.parseInt((String) newValue); in onCreateInternal()
160 if (reply == mEvent.reply) return false; in onCreateInternal()
161 mEvent.reply = reply; in onCreateInternal()
176 if (!Objects.equals(mReply.getValue(), Integer.toString(mEvent.reply))) { in updateControlsInternal()
177 mReply.setValue(Integer.toString(mEvent.reply)); in updateControlsInternal()
/packages/modules/DnsResolver/tests/dns_responder/
Ddns_tls_frontend.cpp238 std::vector<uint8_t> reply; in handleRequests() local
287 reply.insert(reply.end(), responseHeader, responseHeader + 2); in handleRequests()
288 reply.insert(reply.end(), recv_buffer, recv_buffer + rlen); in handleRequests()
301 const int replyLen = reply.size(); in handleRequests()
303 if (SSL_write(ssl, reply.data(), replyLen) != replyLen) { in handleRequests()
/packages/modules/Connectivity/tests/unit/java/android/net/nsd/
DNsdManagerTest.java168 NsdServiceInfo reply = new NsdServiceInfo("resolved_name", "resolved_type"); in doTestResolveService() local
179 sendResponse(NsdManager.RESOLVE_SERVICE_SUCCEEDED, 0, key2, reply); in doTestResolveService()
180 verify(listener, timeout(mTimeoutMs).times(1)).onServiceResolved(reply); in doTestResolveService()
187 NsdServiceInfo reply = new NsdServiceInfo("resolved_name", "resolved_type"); in doTestParallelResolveService() local
198 sendResponse(NsdManager.RESOLVE_SERVICE_SUCCEEDED, 0, key2, reply); in doTestParallelResolveService()
199 sendResponse(NsdManager.RESOLVE_SERVICE_SUCCEEDED, 0, key1, reply); in doTestParallelResolveService()
201 verify(listener1, timeout(mTimeoutMs).times(1)).onServiceResolved(reply); in doTestParallelResolveService()
202 verify(listener2, timeout(mTimeoutMs).times(1)).onServiceResolved(reply); in doTestParallelResolveService()
/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DNetworkDiagnostics.java543 ByteBuffer reply = ByteBuffer.allocate(PACKET_BUFSIZE); in run() local
544 Os.read(mFileDescriptor, reply); in run()
625 ByteBuffer reply = ByteBuffer.allocate(PACKET_BUFSIZE); in run() local
626 Os.read(mFileDescriptor, reply); in run()
629 final String rcodeStr = (reply.limit() > 3) in run()
630 ? " " + responseCodeStr((int) (reply.get(3)) & 0x0f) in run()
729 final byte[] reply = new byte[replyLength]; in sendDoTProbe()
732 bytesRead += input.read(reply, bytesRead, replyLength - bytesRead); in sendDoTProbe()
736 mMeasurement.recordSuccess("1/1 " + responseCodeStr((int) (reply[3]) & 0x0f)); in sendDoTProbe()
/packages/apps/Car/libs/car-assist-lib/src/com/android/car/assist/payloadhandlers/
DNotificationPayloadHandler.java151 public Intent writeReply(@Nullable Action actionCallback, CharSequence reply) { in writeReply() argument
174 results.putCharSequence(remoteInput.getResultKey(), reply); in writeReply() local
191 public Intent writeReply(Bundle args, CharSequence reply) { in writeReply() argument
192 return writeReply(getAction(args, Action.SEMANTIC_ACTION_REPLY), reply); in writeReply()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
DAvrcpBipObexServer.java99 public int onConnect(final HeaderSet request, HeaderSet reply) { in onConnect() argument
114 reply.setHeader(HeaderSet.WHO, BLUETOOTH_UUID_AVRCP_COVER_ART); in onConnect()
123 public void onDisconnect(final HeaderSet request, HeaderSet reply) { in onDisconnect() argument
164 public int onAbort(final HeaderSet request, HeaderSet reply) { in onAbort() argument
169 public int onSetPath(final HeaderSet request, HeaderSet reply, final boolean backup, in onSetPath() argument
/packages/apps/Settings/src/com/android/settings/development/qstile/
DDevelopmentTiles.java228 Parcel reply = null; in isLayerTraceEnabled() local
232 reply = Parcel.obtain(); in isLayerTraceEnabled()
236 data, reply, 0 /* flags */); in isLayerTraceEnabled()
237 layerTraceEnabled = reply.readBoolean(); in isLayerTraceEnabled()
244 reply.recycle(); in isLayerTraceEnabled()
/packages/modules/ExtServices/java/src/android/ext/services/notification/
DAssistant.java217 public void onSuggestedReplySent(@NonNull String key, @NonNull CharSequence reply, in onSuggestedReplySent() argument
220 Log.d(TAG, "onSuggestedReplySent() called with: key = [" + key + "], reply = [" + reply in onSuggestedReplySent()
224 () -> mSmartSuggestionsHelper.onSuggestedReplySent(key, reply, source)); in onSuggestedReplySent()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcp/
DAvrcpBipObexServerTest.java462 HeaderSet reply = null; in testOnAbort() local
463 int responseCode = mAvrcpBipObexServer.onAbort(request, reply); in testOnAbort()
473 HeaderSet reply = null; in testOnSetPath() local
476 int responseCode = mAvrcpBipObexServer.onSetPath(request, reply, backup, create); in testOnSetPath()
/packages/apps/Dialer/java/com/android/incallui/
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/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DNotificationUtils.java101 final CharSequence reply = remoteInput.getCharSequence(KEY_REPLY); in onReceiveDirectReply() local
107 .setContentText(String.format("Sent \"%s\" to %s", reply, in onReceiveDirectReply()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
DUserNoiticeDemoUiService.java62 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
71 return super.onTransact(code, data, reply, flags);
/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiScanner.java1196 Message reply = in getScanResults() local
1198 return reply.what == CMD_OP_SUCCEEDED; in getScanResults()
1281 Message reply = mAsyncChannel.sendMessageSynchronously(CMD_GET_SINGLE_SCAN_RESULTS, 0, 0, in getSingleScanResults() local
1283 if (reply.what == WifiScanner.CMD_OP_SUCCEEDED) { in getSingleScanResults()
1284 return Arrays.asList(((ParcelableScanResults) reply.obj).getResults()); in getSingleScanResults()
1286 OperationResult result = (OperationResult) reply.obj; in getSingleScanResults()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DDevelopmentFragment.java997 Parcel reply = Parcel.obtain(); in updateFlingerOptions() local
999 flinger.transact(1010, data, reply, 0); in updateFlingerOptions()
1001 int showCpu = reply.readInt(); in updateFlingerOptions()
1003 int enableGL = reply.readInt(); in updateFlingerOptions()
1004 int showUpdates = reply.readInt(); in updateFlingerOptions()
1007 int showBackground = reply.readInt(); in updateFlingerOptions()
1008 int disableOverlays = reply.readInt(); in updateFlingerOptions()
1010 reply.recycle(); in updateFlingerOptions()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DMapMceTestFragment.java143 Button reply = (Button) v.findViewById(R.id.reply); in onCreateView() local
172 reply.setOnClickListener(new View.OnClickListener() { in onCreateView()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DTestActivity.java507 public int onConnect(HeaderSet request, HeaderSet reply) { in onConnect() argument
575 public int onSetPath(HeaderSet request, HeaderSet reply, boolean backup, boolean create) { in onSetPath() argument
581 public int onDelete(HeaderSet request, HeaderSet reply) { in onDelete() argument

12