Searched defs:received (Results 1 - 9 of 9) sorted by relevance

/external/nist-sip/java/javax/sip/header/
H A DViaHeader.java25 void setReceived(String received) throws ParseException; argument
/external/ppp/pppd/plugins/radius/
H A Dbuildreq.c157 * Returns: received value_pairs in received, messages from the server in msg
162 int rc_auth(UINT4 client_port, VALUE_PAIR *send, VALUE_PAIR **received, argument
170 return rc_auth_using_server(authserver, client_port, send, received,
181 * Returns: received value_pairs in received, messages from the server in msg
189 VALUE_PAIR **received,
229 *received = data.receive_pairs;
242 * Returns: received value_pairs in received, message
186 rc_auth_using_server(SERVER *authserver, UINT4 client_port, VALUE_PAIR *send, VALUE_PAIR **received, char *msg, REQUEST_INFO *info) argument
247 rc_auth_proxy(VALUE_PAIR *send, VALUE_PAIR **received, char *msg) argument
[all...]
H A Dradius.c248 VALUE_PAIR *send, *received; local
270 received = NULL;
297 &received, radius_msg, NULL);
299 result = rc_auth(rstate.client_port, send, &received, radius_msg, NULL);
303 if (radius_setparams(received, radius_msg, NULL, NULL, NULL, NULL, 0) < 0) {
309 rc_avpair_free(received);
337 VALUE_PAIR *send, *received; local
382 send = received = NULL;
477 &received, radius_msg, req_info);
479 result = rc_auth(rstate.client_port, send, &received, radius_ms
[all...]
/external/webkit/WebCore/html/
H A DHTMLFrameElementBase.cpp18 * You should have received a copy of the GNU Library General Public License
227 void HTMLFrameElementBase::setFocus(bool received) argument
229 HTMLFrameOwnerElement::setFocus(received);
231 page->focusController()->setFocusedFrame(received ? contentFrame() : 0);
/external/dbus/dbus/
H A Ddbus-auth-script.c18 * You should have received a copy of the GNU General Public License
539 DBusString received; local
543 if (!_dbus_string_init (&received))
545 _dbus_warn ("no mem to allocate string received\n");
549 if (!_dbus_string_pop_line (&from_auth, &received))
553 _dbus_string_free (&received);
557 if (!same_first_word (&received, &line))
562 _dbus_string_get_const_data (&received));
563 _dbus_string_free (&received);
567 _dbus_string_free (&received);
[all...]
/external/v8/src/
H A Ddebug-agent.cc190 // Send the request received to the debugger.
214 int received; local
228 received = conn->Receive(&c, 1);
229 if (received <= 0) {
246 ASSERT(header_buffer_position > 1); // At least CRLF is received.
290 received = ReceiveAll(conn, buffer, content_length);
291 if (received < content_length) {
416 int received = conn->Receive(data + total_received, len - total_received); local
417 if (received <= 0) {
420 total_received += received;
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DVia.java67 /** The "received" parameter is added only for receiver-added Via Fields.
480 * Gets the received paramater of the ViaHeader. Returns null if received
483 * @return the string received value of ViaHeader
490 * Sets the received parameter of ViaHeader.
492 * @param received - the newly supplied received parameter.
494 * unexpectedly while parsing the received value.
496 public void setReceived(String received) throws ParseException { argument
497 if (received
[all...]
/external/openssl/crypto/jpake/
H A Djpake.c285 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received) argument
288 if(!verify_zkp(&received->p1, ctx->p.g, ctx))
295 if(!verify_zkp(&received->p2, ctx->p.g, ctx))
302 if(BN_is_one(received->p2.gx))
309 BN_copy(ctx->p.gxc, received->p1.gx);
310 BN_copy(ctx->p.gxd, received->p2.gx);
385 int JPAKE_STEP2_process(JPAKE_CTX *ctx, const JPAKE_STEP2 *received) argument
401 if(verify_zkp(received, t1, ctx))
406 compute_key(ctx, received->gx);
435 int JPAKE_STEP3A_process(JPAKE_CTX *ctx, const JPAKE_STEP3A *received) argument
462 JPAKE_STEP3B_process(JPAKE_CTX *ctx, const JPAKE_STEP3B *received) argument
[all...]
/external/webkit/WebCore/dom/
H A DContainerNode.cpp17 * You should have received a copy of the GNU Library General Public License
781 void ContainerNode::setFocus(bool received) argument
783 if (focused() == received)
786 Node::setFocus(received);

Completed in 187 milliseconds