HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 1 - 25 of 720) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxkbcommon/xkbcommon/src/x11/
state.c 32 xcb_xkb_get_state_reply_t *reply = local
35 if (!reply)
39 reply->baseMods,
40 reply->latchedMods,
41 reply->lockedMods,
42 reply->baseGroup,
43 reply->latchedGroup,
44 reply->lockedGroup);
46 free(reply);
  /external/mesa3d/src/glx/
glx_query.c 46 xcb_glx_query_server_string_reply_t *reply = local
55 uint32_t len = xcb_glx_query_server_string_string_length(reply);
57 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
58 free(reply);
70 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
79 uint32_t len = xcb_glx_get_string_string_length(reply);
81 memcpy(buf, xcb_glx_get_string_string(reply), len);
82 free(reply);
  /frameworks/native/libs/input/
IInputFlinger.cpp 35 Parcel data, reply; local
37 remote()->transact(BnInputFlinger::DO_SOMETHING_TRANSACTION, data, &reply);
38 return reply.readInt32();
46 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
49 CHECK_INTERFACE(IInputFlinger, data, reply);
50 reply->writeInt32(0);
54 return BBinder::onTransact(code, data, reply, flags);
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
RequestHandler.java 59 private Reply reply = null; field in class:RequestHandler
106 reply = new Reply(Reply.Code.BAD_REQUEST,
112 // Ensures that reply field is non-null
118 reply = new Reply(Reply.Code.METHOD_NOT_ALLOWED,
121 reply = new Reply(Reply.Code.OK
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
RequestHandler.java 59 private Reply reply = null; field in class:RequestHandler
106 reply = new Reply(Reply.Code.BAD_REQUEST,
112 // Ensures that reply field is non-null
118 reply = new Reply(Reply.Code.METHOD_NOT_ALLOWED,
121 reply = new Reply(Reply.Code.OK
    [all...]
  /external/libese/tools/ese_replay/
main.c 102 struct Buffer reply; local
103 buffer_init(&reply, 2048);
106 reply.len = (uint32_t)ese_transceive(
107 &ese, payload.tx.buffer, payload.tx.len, reply.buffer, reply.size);
108 if ((int)reply.len < 0 || ese_error(&ese)) {
110 ALOGE("transceived returned failure: %d\n", (int)reply.len);
117 buffer_dump(&reply, "", "Response", 240, stdout);
118 if (reply.len < payload.expected.len) {
119 printf("Received less data than expected: %u < %u\n", reply.len
    [all...]
  /external/valgrind/coregrind/m_mach/
mach_basics.c 54 static mach_port_t reply = 0; variable
58 if (!reply) reply = mach_reply_port();
59 return reply;
80 reply = 0;
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers_wps.c 70 DBusMessage *reply = NULL; local
103 reply = dbus_message_new_method_return(message);
104 if (reply == NULL)
111 dbus_message_append_args(reply, DBUS_TYPE_STRING, &pin,
113 return reply;
  /frameworks/av/drm/common/
IDrmServiceListener.cpp 28 Parcel data, reply; local
35 remote()->transact(NOTIFY, data, &reply);
36 return reply.readInt32();
42 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
47 CHECK_INTERFACE(IDrmServiceListener, data, reply);
53 reply->writeInt32(status);
58 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/libaaudio/src/binding/
IAAudioClient.cpp 46 Parcel data, reply; variable
51 remote()->transact(ON_STREAM_CHANGE, data, &reply, IBinder::FLAG_ONEWAY);
62 Parcel* reply, uint32_t flags) {
70 CHECK_INTERFACE(IAAudioClient, data, reply);
81 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/libaudioclient/
IAudioFlingerClient.cpp 44 Parcel data, reply; local
55 remote()->transact(IO_CONFIG_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
64 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
68 CHECK_INTERFACE(IAudioFlingerClient, data, reply);
83 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/libmedia/
IMediaHTTPService.cpp 38 Parcel data, reply; local
42 remote()->transact(MAKE_HTTP, data, &reply);
44 status_t err = reply.readInt32();
51 return interface_cast<IMediaHTTPConnection>(reply.readStrongBinder());
IMediaRecorderClient.cpp 40 Parcel data, reply; local
45 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
58 CHECK_INTERFACE(IMediaRecorderClient, data, reply);
66 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/native/libs/binder/
IAppOpsCallback.cpp 40 Parcel data, reply; local
44 remote()->transact(OP_CHANGED_TRANSACTION, data, &reply);
53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
57 CHECK_INTERFACE(IAppOpsCallback, data, reply);
61 reply->writeNoException();
65 return BBinder::onTransact(code, data, reply, flags);
IMediaResourceMonitor.cpp 33 Parcel data, reply; local
37 remote()->transact(NOTIFY_RESOURCE_GRANTED, data, &reply, IBinder::FLAG_ONEWAY);
45 status_t BnMediaResourceMonitor::onTransact( uint32_t code, const Parcel& data, Parcel* reply,
49 CHECK_INTERFACE(IMediaResourceMonitor, data, reply);
56 return BBinder::onTransact(code, data, reply, flags);
IProcessInfoService.cpp 34 Parcel data, reply; local
38 status_t err = remote()->transact(GET_PROCESS_STATES_FROM_PIDS, data, &reply);
39 if (err != NO_ERROR || ((err = reply.readExceptionCode()) != NO_ERROR)) {
42 int32_t replyLen = reply.readInt32();
46 if (replyLen > 0 && (err = reply.read(states, length * sizeof(*states))) != NO_ERROR) {
49 return reply.readInt32();
55 Parcel data, reply; local
62 GET_PROCESS_STATES_AND_OOM_SCORES_FROM_PIDS, data, &reply);
64 || ((err = reply.readExceptionCode()) != NO_ERROR)) {
67 int32_t replyLen = reply.readInt32()
    [all...]
IShellCallback.cpp 44 Parcel data, reply; local
49 remote()->transact(OP_OPEN_OUTPUT_FILE, data, &reply, 0);
50 reply.readExceptionCode();
51 int fd = reply.readParcelFileDescriptor();
62 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
66 CHECK_INTERFACE(IShellCallback, data, reply);
71 if (reply != NULL) {
72 reply->writeNoException();
74 reply->writeInt32(1);
75 reply->writeParcelFileDescriptor(fd, true)
    [all...]
IUidObserver.cpp 35 Parcel data, reply; local
39 remote()->transact(ON_UID_GONE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY);
44 Parcel data, reply; local
47 remote()->transact(ON_UID_ACTIVE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY);
52 Parcel data, reply; local
56 remote()->transact(ON_UID_IDLE_TRANSACTION, data, &reply, IBinder::FLAG_ONEWAY);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IUidObserver, data, reply);
79 CHECK_INTERFACE(IUidObserver, data, reply);
86 CHECK_INTERFACE(IUidObserver, data, reply);
    [all...]
  /hardware/qcom/display/msm8084/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8226/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8909/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8909w_3100/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8960/libqservice/
IQClient.cpp 45 Parcel data, reply; local
49 remote()->transact(NOTIFY_CALLBACK, data, &reply);
50 status_t result = reply.readInt32();
60 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
64 CHECK_INTERFACE(IQClient, data, reply);
71 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8994/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8996/libqservice/
IQClient.cpp 51 Parcel *reply = outParcel; local
57 status_t result = remote()->transact(NOTIFY_CALLBACK, data, reply);
67 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 CHECK_INTERFACE(IQClient, data, reply);
73 notifyCallback(command, &data, reply);
77 return BBinder::onTransact(code, data, reply, flags);

Completed in 1669 milliseconds

1 2 3 4 5 6 7 8 91011>>