Searched defs:reply (Results 26 - 50 of 124) sorted by relevance

12345

/external/ipsec-tools/src/racoon/
H A Dprivsep.c288 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/mesa3d/src/glx/
H A Dindirect_glx.c66 xGLXMakeCurrentReply * reply)
119 ret = _XReply(dpy, (xReply *) reply, 0, False);
131 xGLXMakeCurrentReply reply; local
144 SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read, &reply);
150 gc->currentContextTag = reply.contextTag;
166 xGLXMakeCurrentReply reply; local
177 gc->currentContextTag, None, None, &reply);
63 SendMakeCurrentRequest(Display * dpy, CARD8 opcode, GLXContextID gc_id, GLXContextTag gc_tag, GLXDrawable draw, GLXDrawable read, xGLXMakeCurrentReply * reply) argument
H A Dglx_pbuffer.c267 * capture the reply rather than always calling Xmalloc.
274 xGLXGetDrawableAttributesReply reply; local
318 _XReply(dpy, (xReply *) & reply, 0, False);
320 if (reply.type == X_Error) {
326 length = reply.length;
328 num_attributes = (use_glx_1_3) ? reply.numAttribs : length / 2;
H A Dglxext.c290 xcb_glx_query_version_reply_t *reply = xcb_glx_query_version_reply(c, local
297 if (!reply)
300 if (reply->major_version != GLX_MAJOR_VERSION) {
301 free(reply);
304 *major = reply->major_version;
305 *minor = min(reply->minor_version, GLX_MINOR_VERSION);
306 free(reply);
310 xGLXQueryVersionReply reply;
319 _XReply(dpy, (xReply *) & reply, 0, False);
323 if (reply
654 xGLXGetVisualConfigsReply reply; local
684 xGLXGetFBConfigsReply reply; local
[all...]
H A Dsingle2.c131 xGLXGetErrorReply reply; local
143 retval = reply.error;
323 xGLXSingleReply reply; local
374 xGLXSingleReply reply; local
425 xGLXSingleReply reply; local
476 xGLXSingleReply reply; local
579 xGLXRenderModeReply reply; local
590 if (reply.newMode != mode) {
618 xGLXSingleReply reply; local
799 xGLXSingleReply reply; local
893 xcb_glx_are_textures_resident_reply_t *reply = local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DApplicationTest.java294 public boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
/external/wpa_supplicant_8/hostapd/src/l2_packet/
H A Dl2_packet_privsep.c143 u8 reply[ETH_ALEN + 1]; local
202 res = recv(l2->fd, reply, sizeof(reply), 0);
209 "registration reply");
214 wpa_printf(MSG_DEBUG, "L2: Unexpected registration reply "
217 os_memcpy(l2->own_addr, reply, ETH_ALEN);
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_das.c38 struct radius_msg *reply; local
169 reply = radius_msg_new(error ? RADIUS_CODE_DISCONNECT_NAK :
171 if (reply == NULL)
175 if (!radius_msg_add_attr_int32(reply, RADIUS_ATTR_ERROR_CAUSE,
177 radius_msg_free(reply);
182 return reply;
201 struct radius_msg *msg, *reply = NULL; local
267 reply = radius_das_disconnect(das, msg, abuf, from_port);
271 reply = radius_msg_new(RADIUS_CODE_COA_NAK,
273 if (reply
[all...]
/external/wpa_supplicant_8/src/l2_packet/
H A Dl2_packet_privsep.c143 u8 reply[ETH_ALEN + 1]; local
202 res = recv(l2->fd, reply, sizeof(reply), 0);
209 "registration reply");
214 wpa_printf(MSG_DEBUG, "L2: Unexpected registration reply "
217 os_memcpy(l2->own_addr, reply, ETH_ALEN);
/external/wpa_supplicant_8/src/radius/
H A Dradius_das.c38 struct radius_msg *reply; local
169 reply = radius_msg_new(error ? RADIUS_CODE_DISCONNECT_NAK :
171 if (reply == NULL)
175 if (!radius_msg_add_attr_int32(reply, RADIUS_ATTR_ERROR_CAUSE,
177 radius_msg_free(reply);
182 return reply;
201 struct radius_msg *msg, *reply = NULL; local
267 reply = radius_das_disconnect(das, msg, abuf, from_port);
271 reply = radius_msg_new(RADIUS_CODE_COA_NAK,
273 if (reply
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c181 char *reply; local
182 reply = os_malloc(7 + 2 * COOKIE_LEN + 1);
183 if (reply == NULL) {
188 os_memcpy(reply, "COOKIE=", 7);
189 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
193 return reply;
213 char *reply = NULL; local
251 reply = wpa_supplicant_ctrl_iface_get_cookie(priv, &reply_len);
303 reply = wpa_supplicant_ctrl_iface_process(wpa_s, pos,
308 if (reply) {
526 char *reply; local
551 char *reply; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c257 DBusMessage *reply; local
276 reply = dbus_message_new_method_return(message);
277 if (reply) {
280 dbus_message_append_args(reply, DBUS_TYPE_STRING, &intro_str,
285 return reply;
H A Ddbus_old.c134 * Returns: a reply dbus message, or a dbus error message
142 DBusMessage *reply = NULL; local
151 reply = wpas_dbus_iface_set_network(message, wpa_s, ssid);
153 reply = wpas_dbus_iface_enable_network(message, wpa_s, ssid);
155 reply = wpas_dbus_iface_disable_network(message, wpa_s, ssid);
157 return reply;
166 * Returns: a reply dbus message, or a dbus error message
213 DBusMessage *reply = NULL; local
226 reply = wpas_dbus_new_invalid_iface_error(message);
235 reply
328 DBusMessage *reply = NULL; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/l2_packet/
H A Dl2_packet_privsep.c143 u8 reply[ETH_ALEN + 1]; local
202 res = recv(l2->fd, reply, sizeof(reply), 0);
209 "registration reply");
214 wpa_printf(MSG_DEBUG, "L2: Unexpected registration reply "
217 os_memcpy(l2->own_addr, reply, ETH_ALEN);
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_das.c38 struct radius_msg *reply; local
169 reply = radius_msg_new(error ? RADIUS_CODE_DISCONNECT_NAK :
171 if (reply == NULL)
175 if (!radius_msg_add_attr_int32(reply, RADIUS_ATTR_ERROR_CAUSE,
177 radius_msg_free(reply);
182 return reply;
201 struct radius_msg *msg, *reply = NULL; local
267 reply = radius_das_disconnect(das, msg, abuf, from_port);
271 reply = radius_msg_new(RADIUS_CODE_COA_NAK,
273 if (reply
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPTestCase.java171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
172 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
174 reply.getNextValueAsByte();
175 long objectRefTypeID = reply.getNextValueAsReferenceTypeID();
193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
194 checkReplyPacket(reply, "ReferenceType::Methods command");
195 int methods = reply.getNextValueAsInt();
197 long methodID = reply.getNextValueAsMethodID();
198 String name = reply.getNextValueAsString(); // method name
199 reply
591 checkReplyPacket(ReplyPacket reply, String message, int errorCodeExpected) argument
605 checkReplyPacket(ReplyPacket reply, String message) argument
620 checkReplyPacket(ReplyPacket reply, String message, int[] expected) argument
637 checkReplyPacketWithoutFail(ReplyPacket reply, String message) argument
659 checkReplyPacket(ReplyPacket reply, String message, int[] expected, boolean failSign) argument
769 assertAllDataRead(Packet reply) argument
[all...]
/external/google-breakpad/src/client/windows/crash_generation/
H A Dcrash_generation_server.cc605 ProtocolMessage* reply) const {
606 reply->tag = MESSAGE_TAG_REGISTRATION_RESPONSE;
607 reply->id = GetCurrentProcessId();
609 if (CreateClientHandles(client_info, reply)) {
615 if (reply->dump_request_handle) {
617 reply->dump_request_handle, // hSourceHandle
623 reply->dump_request_handle = NULL;
626 if (reply->dump_generated_handle) {
628 reply->dump_generated_handle, // hSourceHandle
634 reply
688 ProtocolMessage reply; local
[all...]
/external/lldb/tools/driver/
H A DIOChannel.cpp154 char reply; local
175 reply = 'n';
176 got_char = el_getc(m_edit_line, &reply);
177 if (got_char == -1 || reply == 'n')
179 if (reply == 'a')
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c179 xcb_dri2_get_buffers_reply_t *reply; local
187 reply = vl_dri2_get_flush_reply(scrn);
188 if (!reply) {
191 reply = xcb_dri2_get_buffers_reply(scrn->conn, cookie, NULL);
193 if (!reply)
196 buffers = xcb_dri2_get_buffers_buffers(reply);
198 free(reply);
202 for (i = 0; i < reply->count; ++i) {
209 if (i == reply->count) {
210 free(reply);
261 xcb_dri2_get_msc_reply_t *reply; local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/x11/
H A Dglxinit.c140 xGLXSingleReply reply; local
163 _XReply(dpy, (xReply *) & reply, 0, False);
165 length = reply.length * 4;
166 numbytes = reply.size;
241 xGLXQueryVersionReply reply; local
250 _XReply(dpy, (xReply *) & reply, 0, False);
254 if (reply.majorVersion != GLX_MAJOR_VERSION) {
261 *major = reply.majorVersion;
262 *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
310 ** of the reply
520 xGLXGetFBConfigsReply reply; local
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdy3.java440 @Override public synchronized void ping(boolean reply, int payload1, int payload2) argument
444 if (reply != payloadIsReply) throw new IllegalArgumentException("payload != reply");
H A DSpdyStream.java61 /** Headers sent in the stream reply. Null if reply is either not sent or not sent yet. */
158 * Sends a reply to an incoming stream.
163 public void reply(List<Header> responseHeaders, boolean out) throws IOException { method in class:SpdyStream
171 throw new IllegalStateException("reply already sent");
203 * and a {@link #reply} has not yet been sent.
208 throw new IllegalStateException("reply before requesting the sink");
/external/openssh/
H A Dauthfd.c65 #define MAX_AGENT_IDENTITIES 2048 /* Max keys in agent reply */
66 #define MAX_AGENT_REPLY_LEN (256 * 1024) /* Max bytes in agent reply */
123 /* Communicate with agent: send request and read reply */
125 ssh_request_reply(int sock, struct sshbuf *request, struct sshbuf *reply) argument
153 sshbuf_reset(reply);
160 if ((r = sshbuf_put(reply, buf, l)) != 0)
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_ctrl.c452 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) argument
584 res = recv(ctrl->s, reply, *reply_len, 0);
689 char *reply, size_t *reply_len,
698 if (!ReadFile(ctrl->pipe, reply, *reply_le
451 wpa_ctrl_request(struct wpa_ctrl *ctrl, const char *cmd, size_t cmd_len, char *reply, size_t *reply_len, void (*msg_cb)(char *msg, size_t len)) argument
688 wpa_ctrl_request(struct wpa_ctrl *ctrl, const char *cmd, size_t cmd_len, char *reply, size_t *reply_len, void (*msg_cb)(char *msg, size_t len)) argument
706 wpa_ctrl_recv(struct wpa_ctrl *ctrl, char *reply, size_t *reply_len) argument
[all...]
/external/wpa_supplicant_8/src/common/
H A Dwpa_ctrl.c452 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) argument
584 res = recv(ctrl->s, reply, *reply_len, 0);
689 char *reply, size_t *reply_len,
698 if (!ReadFile(ctrl->pipe, reply, *reply_le
451 wpa_ctrl_request(struct wpa_ctrl *ctrl, const char *cmd, size_t cmd_len, char *reply, size_t *reply_len, void (*msg_cb)(char *msg, size_t len)) argument
688 wpa_ctrl_request(struct wpa_ctrl *ctrl, const char *cmd, size_t cmd_len, char *reply, size_t *reply_len, void (*msg_cb)(char *msg, size_t len)) argument
706 wpa_ctrl_recv(struct wpa_ctrl *ctrl, char *reply, size_t *reply_len) argument
[all...]

Completed in 2652 milliseconds

12345