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

1 23 4 5 6 7 8 91011>>

  /frameworks/av/camera/camera2/
ICameraDeviceCallbacks.cpp 52 Parcel data, reply; local
55 remote()->transact(CAMERA_ERROR, data, &reply, IBinder::FLAG_ONEWAY);
62 Parcel data, reply; local
64 remote()->transact(CAMERA_IDLE, data, &reply, IBinder::FLAG_ONEWAY);
71 Parcel data, reply; local
75 remote()->transact(CAPTURE_STARTED, data, &reply, IBinder::FLAG_ONEWAY);
82 Parcel data, reply; local
87 remote()->transact(RESULT_RECEIVED, data, &reply, IBinder::FLAG_ONEWAY);
98 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
104 CHECK_INTERFACE(ICameraDeviceCallbacks, data, reply);
    [all...]
  /frameworks/av/media/libmedia/
IEffectClient.cpp 44 Parcel data, reply; local
47 remote()->transact(CONTROL_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
53 Parcel data, reply; local
56 remote()->transact(ENABLE_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
66 Parcel data, reply; local
85 remote()->transact(COMMAND_EXECUTED, data, &reply, IBinder::FLAG_ONEWAY);
95 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
100 CHECK_INTERFACE(IEffectClient, data, reply);
107 CHECK_INTERFACE(IEffectClient, data, reply);
114 CHECK_INTERFACE(IEffectClient, data, reply);
    [all...]
IEffect.cpp 47 Parcel data, reply; local
49 remote()->transact(ENABLE, data, &reply);
50 return reply.readInt32();
56 Parcel data, reply; local
58 remote()->transact(DISABLE, data, &reply);
59 return reply.readInt32();
69 Parcel data, reply; local
87 status_t status = remote()->transact(COMMAND, data, &reply);
94 status = reply.readInt32();
95 size = reply.readInt32()
106 Parcel data, reply; local
114 Parcel data, reply; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 108 sp<AMessage> reply; local
109 CHECK(msg->findMessage("reply", &reply));
122 reply->setBuffer("buffer", outBuffer);
123 reply->post();
  /frameworks/base/core/java/android/os/
Binder.java 256 protected boolean onTransact(int code, Parcel data, Parcel reply,
259 reply.writeString(getInterfaceDescriptor());
276 if (reply != null) {
277 reply.writeNoException();
355 public final boolean transact(int code, Parcel data, Parcel reply,
361 boolean r = onTransact(code, data, reply, flags);
362 if (reply != null) {
363 reply.setDataPosition(0);
396 Parcel reply = Parcel.obtain(replyObj); local
404 res = onTransact(code, data, reply, flags)
450 Parcel reply = Parcel.obtain(); local
464 Parcel reply = Parcel.obtain(); local
    [all...]
  /frameworks/native/libs/gui/
IGraphicBufferAlloc.cpp 47 Parcel data, reply; local
53 remote()->transact(CREATE_GRAPHIC_BUFFER, data, &reply);
55 status_t result = reply.readInt32();
58 result = reply.read(*graphicBuffer);
59 // reply.readStrongBinder();
73 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
90 CHECK_INTERFACE(IGraphicBufferAlloc, data, reply);
98 reply->writeInt32(error);
100 reply->write(*result);
107 reply->writeStrongBinder( new BufferReference(result) )
    [all...]
ISensorEventConnection.cpp 50 Parcel data, reply; local
52 remote()->transact(GET_SENSOR_CHANNEL, data, &reply);
53 return new BitTube(reply);
59 Parcel data, reply; local
66 remote()->transact(ENABLE_DISABLE, data, &reply);
67 return reply.readInt32();
72 Parcel data, reply; local
76 remote()->transact(SET_EVENT_RATE, data, &reply);
77 return reply.readInt32();
81 Parcel data, reply; local
    [all...]
ISurfaceComposerClient.cpp 56 Parcel data, reply; local
63 remote()->transact(CREATE_SURFACE, data, &reply);
64 *handle = reply.readStrongBinder();
65 *gbp = interface_cast<IGraphicBufferProducer>(reply.readStrongBinder());
66 return reply.readInt32();
70 Parcel data, reply; local
73 remote()->transact(DESTROY_SURFACE, data, &reply);
74 return reply.readInt32();
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
87 CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
    [all...]
  /system/security/keystore-engine/
dsa_meth.cpp 70 uint8_t* reply = NULL; local
73 dlen, &reply, &replyLen);
89 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
ecdsa_meth.cpp 76 uint8_t* reply = NULL; local
79 dlen, &reply, &replyLen);
95 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
rsa_meth.cpp 91 uint8_t* reply = NULL; local
94 num, &reply, &replyLen);
97 free(reply);
101 free(reply);
108 memcpy(to, reply, replyLen);
109 free(reply);
137 uint8_t* reply = NULL; local
140 flen, &reply, &replyLen);
154 if (*reply == 0x00) {
155 alignedReply = reply + 1
    [all...]
  /external/chromium/chrome/browser/importer/
nss_decryptor.cc 86 SECItem reply; local
87 reply.data = NULL;
88 reply.len = 0;
90 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
92 result = PK11SDR_Decrypt(&request, &reply, NULL);
95 plain.assign(reinterpret_cast<char*>(reply.data), reply.len);
97 SECITEM_FreeItem(&reply, PR_FALSE);
  /external/chromium/net/base/
test_completion_callback_unittest.cc 69 Task* reply = NewRunnableMethod(this, &ExampleWorker::DoCallback); local
76 origin_loop_->PostTask(FROM_HERE, reply);
77 reply = NULL;
82 delete reply;
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_delegate_impl_win.h 79 const base::Callback<void(base::PlatformFileError)>& reply);
83 const base::Callback<void(base::PlatformFileError)> reply; member in struct:chrome::MTPDeviceDelegateImplWin::PendingTaskInfo
112 // call-and-reply to a blocking pool thread. |task_info.task| runs on a
113 // blocking pool thread and |task_info.reply| runs on the IO thread.
124 // parameters in |current_snapshot_details_| by doing a call-and-reply to a
  /external/chromium_org/chrome/utility/importer/
nss_decryptor.cc 86 SECItem reply; local
87 reply.data = NULL;
88 reply.len = 0;
90 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
92 result = PK11SDR_Decrypt(&request, &reply, NULL);
95 plain.assign(reinterpret_cast<char*>(reply.data), reply.len);
97 SECITEM_FreeItem(&reply, PR_FALSE);
  /external/chromium_org/content/public/browser/
browser_message_filter.cc 134 IPC::Message* reply = IPC::SyncMessage::GenerateReply(&message); local
135 reply->set_reply_error();
136 sender->Send(reply);
  /external/chromium_org/ipc/
ipc_sync_message.cc 99 Message* reply = new Message(msg->routing_id(), IPC_REPLY_ID, local
101 reply->set_reply();
105 // use the same message id, but this time reply bit is set
107 WriteSyncHeader(reply, header);
109 return reply;
  /external/chromium_org/ppapi/proxy/
plugin_resource.h 43 // This handles a reply to a resource call. It works by looking up the
68 // corresponding to this resource object and does not expect a reply.
72 // will be run when a reply message with a sequence number matching that of
73 // the call is received. |ReplyMsgClass| is the type of the reply message that
81 // If a reply message to this call is received whose type does not match
104 // |ReplyMsgClass| is the type of the reply message that is expected. If it
108 // // Assuming the reply message carries a string and an integer.
185 IPC::Message reply; local
187 return GenericSyncCall(dest, msg, &reply, &reply_params);
193 IPC::Message reply; local
205 IPC::Message reply; local
217 IPC::Message reply; local
229 IPC::Message reply; local
241 IPC::Message reply; local
    [all...]
talk_resource_unittest.cc 52 const IPC::Message& reply,
61 IPC::Message reply_msg = PpapiPluginMsg_ResourceReply(reply_params, reply);
87 IPC::Message reply = PpapiPluginMsg_ResourceReply( local
89 ASSERT_TRUE(plugin_dispatcher()->OnMessageReceived(reply));
114 IPC::Message reply = PpapiPluginMsg_ResourceReply( local
116 ASSERT_TRUE(plugin_dispatcher()->OnMessageReceived(reply));
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_program.c 181 GLuint index, GLenum pname, xReply * reply)
191 (void) _XReply(dpy, reply, 0, False);
201 xGLXSingleReply reply; local
204 get_vertex_attrib(gc, 1303, index, pname, (xReply *) & reply);
206 if (reply.size != 0) {
214 if (reply.size == 1) {
215 *params = (GLint) reply.pad3;
218 _XRead(dpy, (void *) params, 4 * reply.size);
235 xGLXSingleReply reply; local
238 get_vertex_attrib(gc, 1302, index, pname, (xReply *) & reply);
269 xGLXSingleReply reply; local
    [all...]
  /external/iputils/ninfod/
ninfod.h 52 int reply
67 /* reply info */
68 struct icmp6_nodeinfo reply; /* common */ member in struct:packetcontext
  /external/mesa3d/src/glx/
indirect_vertex_program.c 181 GLuint index, GLenum pname, xReply * reply)
191 (void) _XReply(dpy, reply, 0, False);
201 xGLXSingleReply reply; local
204 get_vertex_attrib(gc, 1303, index, pname, (xReply *) & reply);
206 if (reply.size != 0) {
214 if (reply.size == 1) {
215 *params = (GLint) reply.pad3;
218 _XRead(dpy, (void *) params, 4 * reply.size);
235 xGLXSingleReply reply; local
238 get_vertex_attrib(gc, 1302, index, pname, (xReply *) & reply);
269 xGLXSingleReply reply; local
    [all...]
  /external/qemu/block/
nbd.c 101 struct nbd_reply reply; local
111 if (nbd_receive_reply(s->sock, &reply) == -1)
114 if (reply.error !=0)
115 return -reply.error;
117 if (reply.handle != request.handle)
131 struct nbd_reply reply; local
144 if (nbd_receive_reply(s->sock, &reply) == -1)
147 if (reply.error !=0)
148 return -reply.error;
150 if (reply.handle != request.handle
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 55 char reply[2048]; local
68 reply_len = sizeof(reply) - 1;
69 if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
71 reply[reply_len] = '\0';
73 QString bss(reply);
115 char reply[10]; local
116 size_t reply_len = sizeof(reply);
121 wpagui->ctrlRequest("SCAN", reply, &reply_len);
  /frameworks/base/core/java/android/content/
ContentProviderNative.java 74 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
121 reply.writeNoException();
122 reply.writeInt(1);
123 d.writeToParcel(reply, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
131 reply.writeNoException();
132 reply.writeInt(0);
143 reply.writeNoException();
144 reply.writeString(type);
157 reply.writeNoException();
158 Uri.writeToParcel(reply, out)
383 Parcel reply = Parcel.obtain(); local
438 Parcel reply = Parcel.obtain(); local
458 Parcel reply = Parcel.obtain(); local
479 Parcel reply = Parcel.obtain(); local
502 Parcel reply = Parcel.obtain(); local
525 Parcel reply = Parcel.obtain(); local
548 Parcel reply = Parcel.obtain(); local
574 Parcel reply = Parcel.obtain(); local
600 Parcel reply = Parcel.obtain(); local
625 Parcel reply = Parcel.obtain(); local
648 Parcel reply = Parcel.obtain(); local
670 Parcel reply = Parcel.obtain(); local
695 Parcel reply = Parcel.obtain(); local
715 Parcel reply = Parcel.obtain(); local
735 Parcel reply = Parcel.obtain(); local
    [all...]

Completed in 789 milliseconds

1 23 4 5 6 7 8 91011>>