HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 76 - 100 of 352) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/jni/
android_net_wifi_WifiNative.cpp 36 char* reply, size_t reply_len) {
47 if (::wifi_command(command.c_str(), reply, &reply_len) != 0) {
52 if (reply_len > 0 && reply[reply_len-1] == '\n') {
53 reply[reply_len-1] = '\0';
55 reply[reply_len] = '\0';
61 char reply[REPLY_BUF_SIZE]; local
62 if (!doCommand(env, javaCommand, reply, sizeof(reply))) {
65 return static_cast<jint>(atoi(reply));
69 char reply[REPLY_BUF_SIZE] local
78 char reply[REPLY_BUF_SIZE]; local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaPlayerInvokeTest.java 64 Parcel reply = Parcel.obtain(); local
68 mPlayer.invoke(request, reply);
69 assertEquals(val, reply.readInt());
  /frameworks/native/libs/binder/
IAppOpsService.cpp 41 Parcel data, reply; local
46 remote()->transact(CHECK_OPERATION_TRANSACTION, data, &reply);
48 if (reply.readExceptionCode() != 0) return MODE_ERRORED;
49 return reply.readInt32();
53 Parcel data, reply; local
58 remote()->transact(NOTE_OPERATION_TRANSACTION, data, &reply);
60 if (reply.readExceptionCode() != 0) return MODE_ERRORED;
61 return reply.readInt32();
66 Parcel data, reply; local
72 remote()->transact(START_OPERATION_TRANSACTION, data, &reply);
80 Parcel data, reply; local
91 Parcel data, reply; local
100 Parcel data, reply; local
107 Parcel data, reply; local
    [all...]
IServiceManager.cpp 149 Parcel data, reply; local
152 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
153 return reply.readStrongBinder();
159 Parcel data, reply; local
164 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
165 return err == NO_ERROR ? reply.readExceptionCode() : err;
174 Parcel data, reply; local
177 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
180 res.add(reply.readString16());
191 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
  /hardware/qcom/display/msm8960/libqservice/
IQService.cpp 47 Parcel data, reply; local
50 remote()->transact(SECURING, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(UNSECURING, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(CONNECT, data, &reply);
68 Parcel data, reply; local
70 remote()->transact(SCREEN_REFRESH, data, &reply);
71 status_t result = reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
  /hardware/qcom/display/msm8974/libqservice/
IQService.cpp 47 Parcel data, reply; local
50 remote()->transact(SECURING, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(UNSECURING, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(CONNECT, data, &reply);
68 Parcel data, reply; local
70 remote()->transact(SCREEN_REFRESH, data, &reply);
71 status_t result = reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
  /hardware/qcom/display/msm8x26/libqservice/
IQService.cpp 47 Parcel data, reply; local
50 remote()->transact(SECURING, data, &reply);
54 Parcel data, reply; local
57 remote()->transact(UNSECURING, data, &reply);
61 Parcel data, reply; local
64 remote()->transact(CONNECT, data, &reply);
68 Parcel data, reply; local
70 remote()->transact(SCREEN_REFRESH, data, &reply);
71 status_t result = reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 111 Message reply = args.handler.obtainMessage(token); local
112 reply.obj = args;
113 reply.arg1 = msg.arg1;
117 + ", reply.what=" + reply.what);
120 reply.sendToTarget();
  /frameworks/base/core/java/android/os/
CommonTimeUtils.java 51 android.os.Parcel reply = android.os.Parcel.obtain(); local
57 mRemote.transact(method_code, data, reply, 0);
59 res = reply.readInt();
60 ret_val = (0 == res) ? reply.readInt() : error_ret_val;
63 reply.recycle();
72 android.os.Parcel reply = android.os.Parcel.obtain(); local
77 mRemote.transact(method_code, data, reply, 0);
79 return reply.readInt();
85 reply.recycle();
93 android.os.Parcel reply = android.os.Parcel.obtain() local
114 android.os.Parcel reply = android.os.Parcel.obtain(); local
135 android.os.Parcel reply = android.os.Parcel.obtain(); local
156 android.os.Parcel reply = android.os.Parcel.obtain(); local
177 android.os.Parcel reply = android.os.Parcel.obtain(); local
234 android.os.Parcel reply = android.os.Parcel.obtain(); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 160 // query was already completed, so just send the reply.
163 Message reply = args.handler.obtainMessage(msg.what); local
164 reply.obj = args;
165 reply.arg1 = msg.arg1;
167 reply.sendToTarget();
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 115 // send the reply to the enclosing class.
116 Message reply = ContactsAsyncHelper.this.obtainMessage(msg.what); local
117 reply.arg1 = msg.arg1;
118 reply.obj = msg.obj;
119 reply.sendToTarget();
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfoAsyncQuery.java 158 // query was already completed, so just send the reply.
161 Message reply = args.handler.obtainMessage(msg.what); local
162 reply.obj = args;
163 reply.arg1 = msg.arg1;
165 reply.sendToTarget();
ContactsAsyncHelper.java 227 // send the reply to the enclosing class.
228 Message reply = ContactsAsyncHelper.this.mResultHandler.obtainMessage(msg.what); local
229 reply.arg1 = msg.arg1;
230 reply.obj = msg.obj;
231 reply.sendToTarget();
  /packages/services/Telephony/src/com/android/phone/
ContactsAsyncHelper.java 258 // send the reply to the enclosing class.
259 Message reply = ContactsAsyncHelper.this.mResultHandler.obtainMessage(msg.what); local
260 reply.arg1 = msg.arg1;
261 reply.obj = msg.obj;
262 reply.sendToTarget();
  /external/chromium/chrome/browser/
upgrade_detector.cc 109 std::string reply; local
110 if (!base::GetAppOutput(command_line, &reply)) {
115 installed_version.reset(Version::GetVersionFromString(reply));
  /external/chromium_org/content/browser/renderer_host/
gpu_message_filter.cc 31 reply(reply_) {
35 IPC::Message* reply; member in struct:content::GpuMessageFilter::CreateViewCommandBufferRequest
110 request->reply);
139 IPC::Message* reply) {
154 reply->set_reply_error();
155 Send(reply);
170 reply));
176 IPC::Message* reply) {
199 new CreateViewCommandBufferRequest(surface_id, init_params, reply));
209 reply->set_reply_error()
    [all...]
  /external/chromium_org/content/child/npapi/
npobject_stub.cc 81 // just send an error reply to the caller.
82 IPC::Message* reply = IPC::SyncMessage::GenerateReply(&msg); local
83 reply->set_reply_error();
84 Send(reply);
  /external/chromium_org/ppapi/proxy/
pdf_resource.cc 161 IPC::Message reply; local
164 RENDERER, PpapiHostMsg_PDF_GetResourceImage(image_id, scale), &reply,
172 reply, &resource, &image_desc)) {
  /external/chromium_org/sandbox/linux/suid/client/
setuid_sandbox_client.cc 136 char reply; local
137 if (HANDLE_EINTR(read(ipc_fd, &reply, 1)) != 1) {
142 if (reply != kMsgChrootSuccessful) {
143 LOG(ERROR) << "Error code reply from chroot helper";
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_glx.c 66 xGLXMakeCurrentReply * reply)
119 ret = _XReply(dpy, (xReply *) reply, 0, False);
131 xGLXMakeCurrentReply reply; local
144 SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read, &reply);
150 gc->currentContextTag = reply.contextTag;
166 xGLXMakeCurrentReply reply; local
177 gc->currentContextTag, None, None, &reply);
  /external/dnsmasq/src/
dbus.c 269 DBusMessage *reply = dbus_message_new_method_return(message); local
271 dbus_message_append_args(reply, DBUS_TYPE_STRING, &introspection_xml, DBUS_TYPE_INVALID);
272 dbus_connection_send (connection, reply, NULL);
273 dbus_message_unref (reply);
278 DBusMessage *reply = dbus_message_new_method_return(message); local
280 dbus_message_append_args(reply, DBUS_TYPE_STRING, &v, DBUS_TYPE_INVALID);
281 dbus_connection_send (connection, reply, NULL);
282 dbus_message_unref (reply);
  /external/mesa3d/src/glx/
indirect_glx.c 66 xGLXMakeCurrentReply * reply)
119 ret = _XReply(dpy, (xReply *) reply, 0, False);
131 xGLXMakeCurrentReply reply; local
144 SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read, &reply);
150 gc->currentContextTag = reply.contextTag;
166 xGLXMakeCurrentReply reply; local
177 gc->currentContextTag, None, None, &reply);
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 143 stream.reply(Arrays.asList("b", "banana"), true);
149 MockSpdyPeer.InFrame reply = peer.takeFrame(); local
150 assertEquals(TYPE_SYN_REPLY, reply.type);
151 assertEquals(0, reply.flags);
152 assertEquals(2, reply.streamId);
153 assertEquals(Arrays.asList("b", "banana"), reply.nameValueBlock);
167 stream.reply(Arrays.asList("b", "banana"), false);
174 MockSpdyPeer.InFrame reply = peer.takeFrame(); local
175 assertEquals(TYPE_SYN_REPLY, reply.type);
176 assertEquals(FLAG_FIN, reply.flags)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubManager.java 84 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.CREATE)); local
85 NodeExtension elem = (NodeExtension)reply.getExtension("create", PubSubNamespace.BASIC.getXmlns());
211 Packet reply = sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.SUBSCRIPTIONS)); local
212 SubscriptionsExtension subElem = (SubscriptionsExtension)reply.getExtension(PubSubElementType.SUBSCRIPTIONS.getElementName(), PubSubElementType.SUBSCRIPTIONS.getNamespace().getXmlns());
226 PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.AFFILIATIONS)); local
227 AffiliationsExtension listElem = (AffiliationsExtension)reply.getExtension(PubSubElementType.AFFILIATIONS);
254 PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.DEFAULT), PubSubElementType.DEFAULT.getNamespace()); local
255 return NodeUtils.getFormFromPacket(reply, PubSubElementType.DEFAULT);
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_privsep.c 141 u8 reply[ETH_ALEN + 1]; local
199 res = recv(l2->fd, reply, sizeof(reply), 0);
206 "registration reply");
211 wpa_printf(MSG_DEBUG, "L2: Unexpected registration reply "
214 os_memcpy(l2->own_addr, reply, ETH_ALEN);

Completed in 495 milliseconds

1 2 34 5 6 7 8 91011>>