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

/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store.h27 // List of SBAddFullHash (SBAddPrefix, time received and an SBFullHash).
70 int32 received; member in struct:SBAddFullHash
75 received(static_cast<int32>(r.ToTimeT())),
82 : chunk_id(id), received(r), full_hash(h) {}
84 SBAddFullHash() : chunk_id(), received(), full_hash() {}
225 // |pending_adds| is the set of full hashes which have been received
/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/Source/WebCore/html/
H A DHTMLFrameElementBase.cpp18 * You should have received a copy of the GNU Library General Public License
225 void HTMLFrameElementBase::setFocus(bool received) argument
227 HTMLFrameOwnerElement::setFocus(received);
229 if (received)
/external/dbus/dbus/
H A Ddbus-auth-script.c18 * You should have received a copy of the GNU General Public License
622 DBusString received; local
626 if (!_dbus_string_init (&received))
628 _dbus_warn ("no mem to allocate string received\n");
632 if (!_dbus_string_pop_line (&from_auth, &received))
636 _dbus_string_free (&received);
640 if (!same_first_word (&received, &line))
645 _dbus_string_get_const_data (&received));
646 _dbus_string_free (&received);
650 _dbus_string_free (&received);
[all...]
/external/v8/src/
H A Ddebug-agent.cc204 // Send the request received to the debugger.
234 int received; local
248 received = conn->Receive(&c, 1);
249 if (received <= 0) {
266 ASSERT(header_buffer_position > 1); // At least CRLF is received.
310 received = ReceiveAll(conn, buffer, content_length);
311 if (received < content_length) {
436 int received = conn->Receive(data + total_received, len - total_received); local
437 if (received <= 0) {
440 total_received += received;
[all...]
/external/chromium/third_party/libjingle/source/talk/session/tunnel/
H A Dtunnelsessionclient.cc118 void TunnelSessionClientBase::OnSessionCreate(Session* session, bool received) { argument
119 LOG(LS_INFO) << "TunnelSessionClientBase::OnSessionCreate: received="
120 << received;
122 if (received)
/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.c302 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received) argument
304 if(!is_legal(received->p1.gx, ctx))
310 if(!is_legal(received->p2.gx, ctx))
317 if(!verify_zkp(&received->p1, ctx->p.g, ctx))
324 if(!verify_zkp(&received->p2, ctx->p.g, ctx))
331 if(BN_is_one(received->p2.gx))
338 BN_copy(ctx->p.gxc, received->p1.gx);
339 BN_copy(ctx->p.gxd, received->p2.gx);
414 int JPAKE_STEP2_process(JPAKE_CTX *ctx, const JPAKE_STEP2 *received) argument
430 if(verify_zkp(received, t
464 JPAKE_STEP3A_process(JPAKE_CTX *ctx, const JPAKE_STEP3A *received) argument
491 JPAKE_STEP3B_process(JPAKE_CTX *ctx, const JPAKE_STEP3B *received) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DContainerNode.cpp17 * You should have received a copy of the GNU Library General Public License
953 void ContainerNode::setFocus(bool received) argument
955 if (focused() == received)
958 Node::setFocus(received);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dphysicalsocketserver.cc315 int received = ::recv(s_, (char *)pv, (int)cb, 0); local
316 if ((received == 0) && (cb != 0)) {
328 bool success = (received >= 0) || IsBlockingError(error_);
335 return received;
341 int received = ::recvfrom(s_, (char *)pv, (int)cb, 0, (sockaddr*)&saddr, local
344 if ((received >= 0) && (paddr != NULL))
346 bool success = (received >= 0) || IsBlockingError(error_);
353 return received;
H A Dwin32socketserver.cc433 int received = ::recv(socket_, static_cast<char*>(pv), cb, 0); local
435 if (closing_ && received <= static_cast<int>(cb))
437 return received;
444 int received = ::recvfrom(socket_, static_cast<char*>(pv), cb, 0, local
447 if (received != SOCKET_ERROR)
449 if (closing_ && received <= static_cast<int>(cb))
451 return received;
553 // WM_CLOSE will be received before all data has been read, so we need to

Completed in 1852 milliseconds