HomeSort by relevance Sort by last modified time
    Searched refs:reply (Results 376 - 400 of 875) sorted by null

<<11121314151617181920>>

  /frameworks/av/cmds/stagefright/
sf2.cpp 441 sp<AMessage> reply; local
442 CHECK(msg->findMessage("reply", &reply));
445 reply->setInt32("err", ERROR_END_OF_STREAM);
446 reply->post();
544 reply->setInt32("err", mFinalResult);
545 reply->post();
550 reply->setBuffer("buffer", outBuffer);
551 reply->post();
560 sp<AMessage> reply; local
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
AMessage.h 49 // if reply is not set, returns false; otherwise, it retrieves the reply and returns true
50 bool retrieveReply(sp<AMessage> *reply) {
52 *reply = mReply;
57 // sets the reply for this token. returns OK or error
58 status_t setReply(const sp<AMessage> &reply);
115 // awaiting a response and the reply token is consumed from the message
116 // and stored into replyID. The reply token must be used to send the response
120 // Posts the message as a response to a reply token. A reply token ca
    [all...]
  /frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java 164 final byte[] reply = new byte[query.length];
165 final DatagramPacket replyPacket = new DatagramPacket(reply, reply.length);
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
ObexTestServer.java 36 public int onConnect(HeaderSet request, HeaderSet reply) {
53 public void onDisconnect(HeaderSet request, HeaderSet reply) {
73 reply.responseCode = result;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEvents002Test.java 151 ReplyPacket reply = null; local
154 reply = debuggeeWrapper.vmMirror.setMethodEntry(TESTED_CLASS_NAME);
157 reply = debuggeeWrapper.vmMirror.setMethodExit(TESTED_CLASS_NAME);
160 reply = debuggeeWrapper.vmMirror.setMethodExitWithReturnValue(TESTED_CLASS_NAME);
163 checkReplyPacket(reply, "Set " + eventKindName + " event."); //DBG needless ?
164 int requestId = reply.getNextValueAsInt();
CombinedEvents003Test.java 108 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
109 int breakpointRequestID = reply.getNextValueAsInt();
114 reply = debuggeeWrapper.vmMirror
116 checkReplyPacket(reply, "Set METHOD_ENTRY event");
117 int methodEntryRequestID = reply.getNextValueAsInt();
121 reply = debuggeeWrapper.vmMirror
123 checkReplyPacket(reply, "Set METHOD_EXIT event");
124 int methodExitRequestID = reply.getNextValueAsInt();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
SetValuesTest.java 210 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
211 checkReplyPacket(reply, "StackFrame::SetValues command");
236 //check reply for errors
237 reply = debuggeeWrapper.vmMirror.performCommand(packet);
238 checkReplyPacket(reply, "StackFrame::GetValues command");
241 int numberOfValues = reply.getNextValueAsInt();
254 Value val = reply.getNextValueAsValue();
  /external/valgrind/gdbserver_tests/
mcinfcallWSRU.stderrB.exp 29 Could not write register "xxx"; remote failure reply 'E.
38 Could not write register "xxx"; remote failure reply 'E.
47 Could not write register "xxx"; remote failure reply 'E.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
nfs_prot.x 146 * Reply status with file attributes
201 * Status OK portion of remote read reply
210 readokres reply;
273 dirlist reply;
288 statfsokres reply;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
nfs_prot.x 146 * Reply status with file attributes
201 * Status OK portion of remote read reply
210 readokres reply;
273 dirlist reply;
288 statfsokres reply;
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c 1037 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1058 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1060 reply[res++] = '\n';
1061 reply[res] = '\0';
1070 struct wpa_supplicant *wpa_s, char *cmd, char *reply, size_t max_len)
1087 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf),
1089 reply[res++] = '\n';
1090 reply[res] = '\0';
1135 char *reply, size_t max_len,
1145 res = wpa_snprintf_hex_uppercase(reply, max_len, wpabuf_head(buf)
6600 struct wpabuf *reply; local
7945 char *reply; local
9085 char *reply; local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ClassPrepareTest.java 62 ReplyPacket reply = debuggeeWrapper.vmMirror local
64 checkReplyPacket(reply, "Set CLASS_PREPARE event");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StringReference/
ValueTest.java 141 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
143 checkReplyPacket(reply, "StringReference::Value command", expectedError);
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.h 166 // Prepares reply for a client from the given parameters.
168 ProtocolMessage* reply) const;
175 ProtocolMessage* reply) const;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 62 virtual status_t invoke(const Parcel &request, Parcel *reply);
65 virtual status_t getParameter(int key, Parcel *reply);
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 77 * @param reply Parcel to write to
82 public static final void writeExceptionToParcel(Parcel reply, Exception e) {
110 reply.writeException(e);
114 reply.writeInt(code);
115 reply.writeString(e.getMessage());
127 * @param reply Parcel to read from
131 public static final void readExceptionFromParcel(Parcel reply) {
132 int code = reply.readExceptionCode();
134 String msg = reply.readString();
135 DatabaseUtils.readExceptionFromParcel(reply, msg, code)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalService.java 32 protected boolean onTransact(int code, Parcel data, Parcel reply,
39 return super.onTransact(code, data, reply, flags);
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
gscan.cpp 170 virtual int handleResponse(WifiEvent& reply) {
174 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
175 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
179 int id = reply.get_vendor_id();
180 int subcmd = reply.get_vendor_subcmd();
182 void *data = reply.get_vendor_data();
183 int len = reply.get_vendor_data_len();
236 virtual int handleResponse(WifiEvent& reply) {
240 if (reply.get_cmd() != NL80211_CMD_VENDOR)
    [all...]
rtt.cpp 135 virtual int handleResponse(WifiEvent& reply) {
139 if (reply.get_cmd() != NL80211_CMD_VENDOR) {
140 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
144 int id = reply.get_vendor_id();
145 int subcmd = reply.get_vendor_subcmd();
147 void *data = reply.get_vendor_data();
148 int len = reply.get_vendor_data_len();
369 virtual int handleResponse(WifiEvent& reply) {
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 452 char *reply, size_t *reply_len,
521 res = recv(ctrl->s, reply, *reply_len, 0);
524 if (res > 0 && reply[0] == '<') {
526 * wpa_supplicant, not the reply to the
534 reply[res] = '\0';
535 msg_cb(reply, res);
580 int wpa_ctrl_recv(struct wpa_ctrl *ctrl, char *reply, size_t *reply_len)
584 res = recv(ctrl->s, reply, *reply_len, 0);
689 char *reply, size_t *reply_len,
698 if (!ReadFile(ctrl->pipe, reply, *reply_len, &readlen, NULL)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
RttService.java 403 Message reply = Message.obtain(); local
404 reply.what = RttManager.CMD_OP_SUCCEEDED;
405 reply.arg2 = msg.arg2;
406 reply.obj = obj;
408 msg.replyTo.send(reply);
410 // There's not much we can do if reply can't be sent!
413 // locally generated message; doesn't need a reply!
418 Message reply = Message.obtain(); local
419 reply.what = RttManager.CMD_OP_FAILED;
420 reply.arg1 = reason
    [all...]
  /external/libvterm/src/
state.c 832 int reply; local
836 reply = state->mode.cursor;
840 reply = state->mode.screen;
844 reply = state->mode.origin;
848 reply = state->mode.autowrap;
852 reply = state->mode.cursor_blink;
856 reply = state->mode.cursor_visible;
860 reply = state->mode.leftrightmargin;
864 reply = state->mouse_flags == MOUSE_WANT_CLICK;
868 reply = state->mouse_flags == (MOUSE_WANT_CLICK|MOUSE_WANT_DRAG)
1483 int reply; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa.c 92 struct wpa_eapol_key *reply; local
115 hdrlen = mic_len == 24 ? sizeof(*reply192) : sizeof(*reply);
117 hdrlen, &rlen, (void *) &reply);
120 reply192 = (struct wpa_eapol_key_192 *) reply;
122 reply->type = (sm->proto == WPA_PROTO_RSN ||
132 WPA_PUT_BE16(reply->key_info, key_info);
133 WPA_PUT_BE16(reply->key_length, 0);
134 os_memcpy(reply->replay_counter, sm->request_counter,
141 WPA_PUT_BE16(reply->key_data_length, 0);
145 key_mic = reply192->key_mic; /* same offset in reply */
319 struct wpa_eapol_key *reply; local
1086 struct wpa_eapol_key *reply; local
1391 struct wpa_eapol_key *reply; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11.c 254 struct ieee80211_mgmt *reply; local
258 rlen = IEEE80211_HDRLEN + sizeof(reply->u.auth) + ies_len;
263 reply = (struct ieee80211_mgmt *) buf;
264 reply->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
266 os_memcpy(reply->da, dst, ETH_ALEN);
267 os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
268 os_memcpy(reply->bssid, bssid, ETH_ALEN);
270 reply->u.auth.auth_alg = host_to_le16(auth_alg);
271 reply->u.auth.auth_transaction = host_to_le16(auth_transaction);
272 reply->u.auth.status_code = host_to_le16(resp)
1546 struct ieee80211_mgmt reply; local
1570 struct ieee80211_mgmt *reply; local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
JDWPEventModifierTestCase.java 210 ReplyPacket reply = debuggeeWrapper.vmMirror.setEvent(event); local
211 checkReplyPacket(reply, "Failed to request " + eventName);
212 int requestID = reply.getNextValueAsInt();
213 assertAllDataRead(reply);

Completed in 1026 milliseconds

<<11121314151617181920>>