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

12 3 4 5 6 7 8 91011>>

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShadowBinderTest.java 21 Parcel reply = Parcel.obtain(); local
22 assertTrue(testBinder.transact(2, data, reply, 3));
25 assertThat(testBinder.reply, sameInstance(reply));
32 Parcel reply; field in class:ShadowBinderTest.TestBinder
36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
39 this.reply = reply;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 81 char reply[10]; local
82 size_t reply_len = sizeof(reply);
92 wpagui->ctrlRequest(cmd.toAscii().constData(), reply, &reply_len);
  /frameworks/av/camera/
ICameraRecordingProxy.cpp 46 Parcel data, reply; local
49 remote()->transact(START_RECORDING, data, &reply);
50 return reply.readInt32();
56 Parcel data, reply; local
58 remote()->transact(STOP_RECORDING, data, &reply);
64 Parcel data, reply; local
67 remote()->transact(RELEASE_RECORDING_FRAME, data, &reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
81 CHECK_INTERFACE(ICameraRecordingProxy, data, reply);
84 reply->writeInt32(startRecording(listener))
    [all...]
ICameraRecordingProxyListener.cpp 41 Parcel data, reply; local
46 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
55 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
60 CHECK_INTERFACE(ICameraRecordingProxyListener, data, reply);
68 return BBinder::onTransact(code, data, reply, flags);
ICameraClient.cpp 45 Parcel data, reply; local
50 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
58 Parcel data, reply; local
66 remote()->transact(DATA_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
73 Parcel data, reply; local
78 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
87 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
92 CHECK_INTERFACE(ICameraClient, data, reply);
101 CHECK_INTERFACE(ICameraClient, data, reply);
117 CHECK_INTERFACE(ICameraClient, data, reply);
    [all...]
IProCameraCallbacks.cpp 53 Parcel data, reply; local
58 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
63 Parcel data, reply; local
66 remote()->transact(LOCK_STATUS_CHANGED, data, &reply,
72 Parcel data, reply; local
76 remote()->transact(RESULT_RECEIVED, data, &reply, IBinder::FLAG_ONEWAY);
86 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
92 CHECK_INTERFACE(IProCameraCallbacks, data, reply);
101 CHECK_INTERFACE(IProCameraCallbacks, data, reply);
109 CHECK_INTERFACE(IProCameraCallbacks, data, reply);
    [all...]
  /frameworks/av/media/libmedia/
IAudioFlingerClient.cpp 44 Parcel data, reply; local
61 remote()->transact(IO_CONFIG_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
70 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
74 CHECK_INTERFACE(IAudioFlingerClient, data, reply);
96 return BBinder::onTransact(code, data, reply, flags);
IAudioRecord.cpp 47 Parcel data, reply; local
50 status_t status = remote()->transact(GET_CBLK, data, &reply);
52 cblk = interface_cast<IMemory>(reply.readStrongBinder());
59 Parcel data, reply; local
63 status_t status = remote()->transact(START, data, &reply);
65 status = reply.readInt32();
74 Parcel data, reply; local
76 remote()->transact(STOP, data, &reply);
86 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
90 CHECK_INTERFACE(IAudioRecord, data, reply);
    [all...]
IDrmClient.cpp 45 Parcel data, reply; local
52 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
61 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
65 CHECK_INTERFACE(IDrmClient, data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
IMediaLogService.cpp 43 Parcel data, reply; local
48 status_t status = remote()->transact(REGISTER_WRITER, data, &reply);
53 Parcel data, reply; local
56 status_t status = remote()->transact(UNREGISTER_WRITER, data, &reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
72 CHECK_INTERFACE(IMediaLogService, data, reply);
81 CHECK_INTERFACE(IMediaLogService, data, reply);
88 return BBinder::onTransact(code, data, reply, flags);
IMediaPlayerClient.cpp 40 Parcel data, reply; local
48 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
57 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
61 CHECK_INTERFACE(IMediaPlayerClient, data, reply);
74 return BBinder::onTransact(code, data, reply, flags);
IRemoteDisplay.cpp 39 Parcel data, reply; local
41 remote()->transact(PAUSE, data, &reply);
42 return reply.readInt32();
46 Parcel data, reply; local
48 remote()->transact(RESUME, data, &reply);
49 return reply.readInt32();
54 Parcel data, reply; local
56 remote()->transact(DISPOSE, data, &reply);
57 return reply.readInt32();
66 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]
IRemoteDisplayClient.cpp 43 Parcel data, reply; local
50 remote()->transact(ON_DISPLAY_CONNECTED, data, &reply, IBinder::FLAG_ONEWAY);
55 Parcel data, reply; local
57 remote()->transact(ON_DISPLAY_DISCONNECTED, data, &reply, IBinder::FLAG_ONEWAY);
62 Parcel data, reply; local
65 remote()->transact(ON_DISPLAY_ERROR, data, &reply, IBinder::FLAG_ONEWAY);
74 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
78 CHECK_INTERFACE(IRemoteDisplayClient, data, reply);
89 CHECK_INTERFACE(IRemoteDisplayClient, data, reply);
94 CHECK_INTERFACE(IRemoteDisplayClient, data, reply);
    [all...]
  /frameworks/native/cmds/servicemanager/
bctest.c 14 struct binder_io msg, reply; local
21 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
24 ptr = bio_get_ref(&reply);
29 binder_done(bs, &msg, &reply);
38 struct binder_io msg, reply; local
46 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
49 status = bio_get_uint32(&reply);
51 binder_done(bs, &msg, &reply);
  /frameworks/native/libs/binder/
IPermissionController.cpp 42 Parcel data, reply; local
47 remote()->transact(CHECK_PERMISSION_TRANSACTION, data, &reply);
49 if (reply.readExceptionCode() != 0) return 0;
50 return reply.readInt32() != 0;
59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
64 CHECK_INTERFACE(IPermissionController, data, reply);
69 reply->writeNoException();
70 reply->writeInt32(res ? 1 : 0);
74 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/native/libs/gui/
IDisplayEventConnection.cpp 49 Parcel data, reply; local
51 remote()->transact(GET_DATA_CHANNEL, data, &reply);
52 return new BitTube(reply);
56 Parcel data, reply; local
59 remote()->transact(SET_VSYNC_RATE, data, &reply);
63 Parcel data, reply; local
65 remote()->transact(REQUEST_NEXT_VSYNC, data, &reply, IBinder::FLAG_ONEWAY);
74 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
78 CHECK_INTERFACE(IDisplayEventConnection, data, reply);
80 channel->writeToParcel(reply);
    [all...]
ISensorServer.cpp 50 Parcel data, reply; local
52 remote()->transact(GET_SENSOR_LIST, data, &reply);
55 int32_t n = reply.readInt32();
58 reply.read(s);
66 Parcel data, reply; local
68 remote()->transact(CREATE_SENSOR_EVENT_CONNECTION, data, &reply);
69 return interface_cast<ISensorEventConnection>(reply.readStrongBinder());
78 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
82 CHECK_INTERFACE(ISensorServer, data, reply);
85 reply->writeInt32(n)
    [all...]
  /frameworks/native/services/powermanager/
IPowerManager.cpp 49 Parcel data, reply; local
57 return remote()->transact(ACQUIRE_WAKE_LOCK, data, &reply);
63 Parcel data, reply; local
71 return remote()->transact(ACQUIRE_WAKE_LOCK_UID, data, &reply);
76 Parcel data, reply; local
80 return remote()->transact(RELEASE_WAKE_LOCK, data, &reply);
84 Parcel data, reply; local
90 return remote()->transact(UPDATE_WAKE_LOCK_UIDS, data, &reply, IBinder::FLAG_ONEWAY);
  /frameworks/native/services/sensorservice/
BatteryService.cpp 42 Parcel data, reply; local
47 TRANSACTION_noteStartSensor, data, &reply, 0);
48 err = reply.readExceptionCode();
53 Parcel data, reply; local
58 TRANSACTION_noteStopSensor, data, &reply, 0);
59 err = reply.readExceptionCode();
  /external/chromium_org/chrome/browser/history/
top_sites_backend.cc 73 void TopSitesBackend::DoEmptyRequest(const base::Closure& reply,
79 reply); local
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
irt_manifest_file_test.cc 97 pp::Var reply = pp::Var(str); local
98 PostMessage(reply);
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_query.c 49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply, 0, False)
    [all...]
singlepix.c 43 xGLXGetSeparableFilterReply reply; local
58 compsize = reply.length << 2;
64 width = reply.width;
65 height = reply.height;
134 xGLXGetSeparableFilterReply reply; local
146 (void) _XReply(dpy, (xReply *) & reply, 0, False);
148 compsize = reply.length << 2;
151 const GLint width = reply.width;
152 const GLint height = reply.height;
  /external/mesa3d/src/glx/
glx_query.c 49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply, 0, False)
    [all...]
singlepix.c 43 xGLXGetSeparableFilterReply reply; local
58 compsize = reply.length << 2;
64 width = reply.width;
65 height = reply.height;
134 xGLXGetSeparableFilterReply reply; local
146 (void) _XReply(dpy, (xReply *) & reply, 0, False);
148 compsize = reply.length << 2;
151 const GLint width = reply.width;
152 const GLint height = reply.height;

Completed in 683 milliseconds

12 3 4 5 6 7 8 91011>>