HomeSort by relevance Sort by last modified time
    Searched refs:reply (Results 126 - 150 of 470) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/core/libnetutils/
dhcpclient.c 351 static int is_valid_reply(dhcp_msg *msg, dhcp_msg *reply, int sz)
357 if (reply->op != OP_BOOTREPLY) {
358 if (verbose) ALOGD("netcfg: Wrong Op %d != %d\n", reply->op, OP_BOOTREPLY);
361 if (reply->xid != msg->xid) {
362 if (verbose) ALOGD("netcfg: Wrong Xid 0x%x != 0x%x\n", ntohl(reply->xid),
366 if (reply->htype != msg->htype) {
367 if (verbose) ALOGD("netcfg: Wrong Htype %d != %d\n", reply->htype, msg->htype);
370 if (reply->hlen != msg->hlen) {
371 if (verbose) ALOGD("netcfg: Wrong Hlen %d != %d\n", reply->hlen, msg->hlen);
374 if (memcmp(msg->chaddr, reply->chaddr, msg->hlen))
391 dhcp_msg reply; local
    [all...]
  /external/chromium/chrome/browser/automation/
automation_provider_observers_chromeos.cc 64 AutomationJSONReply reply(automation_, reply_message_.release());
67 reply.SendSuccess(NULL);
69 reply.SendError("Login failure.");
90 AutomationJSONReply reply(automation_, reply_message_);
93 reply.SendSuccess(NULL);
95 reply.SendError("Screen lock failure.");
  /frameworks/base/core/java/android/ddm/
DdmHandleProfiling.java 128 /* create a non-empty reply so the handler fires on completion */
129 byte[] reply = { result };
130 return new Chunk(CHUNK_MPRE, reply, 0, reply.length);
183 /* create a non-empty reply so the handler fires on completion */
184 byte[] reply = { (byte) result };
185 return new Chunk(CHUNK_MPRQ, reply, 0, reply.length);
  /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/ipsec-tools/src/racoon/
privsep.c 288 struct privsep_com_msg *reply; local
319 /* Prepare the reply buffer */
320 if ((reply = racoon_malloc(sizeof(*reply))) == NULL) {
322 "Cannot allocate reply buffer: %s\n",
326 bzero(reply, sizeof(*reply));
327 reply->hdr.ac_cmd = combuf->hdr.ac_cmd;
328 reply->hdr.ac_len = sizeof(*reply);
    [all...]
  /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/include/media/
IMediaPlayer.h 65 virtual status_t getParameter(int key, Parcel* reply) = 0;
71 // for the request and reply.
74 // @param[out] reply Parcel to hold the reply data. Cannot be null.
76 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
108 Parcel* reply,
IAudioRecord.h 59 Parcel* reply,
IEffect.h 54 Parcel* reply,
IEffectClient.h 48 Parcel* reply,
IRemoteDisplayClient.h 73 Parcel* reply,
  /frameworks/native/cmds/servicemanager/
binder.h 69 struct binder_io *reply);
78 struct binder_io *msg, struct binder_io *reply,
87 struct binder_io *msg, struct binder_io *reply);
  /system/security/keystore-engine/
eng_keystore.cpp 173 uint8_t* reply = NULL; local
176 num, &reply, &replyLen);
179 free(reply);
183 free(reply);
190 memcpy(to, reply, replyLen);
191 free(reply);
219 uint8_t* reply = NULL; local
222 flen, &reply, &replyLen);
236 if (*reply == 0x00) {
237 alignedReply = reply + 1
    [all...]
  /frameworks/av/drm/libdrmframework/include/
IDrmServiceListener.h 65 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0);
  /frameworks/av/include/camera/
ICameraServiceListener.h 78 Parcel* reply,
  /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/av/media/libstagefright/rtsp/
ARTSPConnection.h 38 void connect(const char *url, const sp<AMessage> &reply);
39 void disconnect(const sp<AMessage> &reply);
41 void sendRequest(const char *request, const sp<AMessage> &reply);
43 void observeBinaryData(const sp<AMessage> &reply);
  /frameworks/base/core/java/android/os/
CommonClock.java 325 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
338 return super.onTransact(code, data, reply, flags);
352 android.os.Parcel reply = android.os.Parcel.obtain(); local
358 mRemote.transact(METHOD_REGISTER_LISTENER, data, reply, 0);
359 success = (0 == reply.readInt());
365 reply.recycle();
384 android.os.Parcel reply = android.os.Parcel.obtain(); local
389 mRemote.transact(METHOD_UNREGISTER_LISTENER, data, reply, 0);
393 reply.recycle();
  /frameworks/native/include/gui/
IDisplayEventConnection.h 66 Parcel* reply,
IGraphicBufferAlloc.h 50 Parcel* reply,
ISensorEventConnection.h 50 Parcel* reply,
ISensorServer.h 50 Parcel* reply,
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi.h 101 * @param reply is a buffer to receive a reply string
103 * the reply buffer. On exit, the number of
104 * bytes in the reply buffer.
108 int wifi_command(const char *iface, const char *command, char *reply, size_t *reply_len);
  /hardware/qcom/display/libqservice/
IQClient.h 46 android::Parcel* reply,
  /frameworks/native/libs/binder/
BpBinder.cpp 109 Parcel send, reply; local
112 INTERFACE_TRANSACTION, send, &reply);
114 String16 res(reply.readString16());
138 Parcel reply; local
139 status_t err = transact(PING_TRANSACTION, send, &reply);
141 if (reply.dataSize() < sizeof(status_t)) return NOT_ENOUGH_DATA;
142 return (status_t)reply.readInt32();
148 Parcel reply; local
155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
160 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags
    [all...]

Completed in 1327 milliseconds

1 2 3 4 56 7 8 91011>>