HomeSort by relevance Sort by last modified time
    Searched refs:received (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/WebKitTools/pywebsocket/example/
echo_client.py 115 received = self._socket.recv(len(frame))
116 if received != frame:
117 raise Exception('Incorrect echo: %r' % received)
119 print 'Recv: %s' % received[1:-1].decode('utf-8',
133 received = self._socket.recv(1)[0]
134 if expected_char != received:
143 received = self._socket.recv(1)[0]
144 if received == terminator[pos]:
146 elif received == terminator[0]:
  /external/openssl/crypto/jpake/
jpake.h 69 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received);
78 int JPAKE_STEP2_process(JPAKE_CTX *ctx, const JPAKE_STEP2 *received);
88 int JPAKE_STEP3A_process(JPAKE_CTX *ctx, const JPAKE_STEP3A *received);
93 int JPAKE_STEP3B_process(JPAKE_CTX *ctx, const JPAKE_STEP3B *received);
jpake.c 285 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received)
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)
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)
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/ui/
MultiPartSmsTests.java 46 // received message. You'll have to adjust the timeout in testLongSmsMessage().
100 // and never received the number back. For now, I'm just hardwiring the number
144 // the sent and received messages compare the same.
145 boolean received = false;
149 // The "msgCount + 2" is to account for the sent and received message. Of
150 // course, another message could be received by the target phone during this time
158 assertEquals("The sent and received messages aren't the same",
161 received = true;
165 assertTrue("Never received the sent message", received);
    [all...]
  /external/nist-sip/java/javax/sip/header/
ViaHeader.java 25 void setReceived(String received) throws ParseException;
  /external/strace/
strace.spec 15 received by a running process. Strace can print a record of each
21 received by a process.
30 received by a running process. Strace can print a record of each
36 received by a process.
  /external/v8/src/
debug-agent.cc 190 // 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/webkit/WebCore/html/
HTMLFrameElementBase.cpp 18 * You should have received a copy of the GNU Library General Public License
227 void HTMLFrameElementBase::setFocus(bool received)
229 HTMLFrameOwnerElement::setFocus(received);
231 page->focusController()->setFocusedFrame(received ? contentFrame() : 0);
  /external/ppp/pppd/plugins/radius/
buildreq.c 157 * 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,
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, messages from the server in ms
    [all...]
radius.c 248 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_msg
    [all...]
  /external/dbus/dbus/
dbus-auth-script.c 18 * 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...]
  /frameworks/base/services/java/com/android/server/am/
IntentBindRecord.java 41 /** Set when we have received the requested binder. */
42 boolean received; field in class:IntentBindRecord
61 pw.print(" received="); pw.print(received);
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
DatagramChannelImpl.java 227 int received = 0; local
237 received = networkSystem.recv(fd, receivePacket,
254 if (received > 0) {
256 target.position(oldposition + received);
258 // copy the data of received packet
259 target.put(receivePacket.getData(), 0, received); local
273 int received = 0; local
276 received = networkSystem.recvDirect(fd, receivePacket, address,
291 // copy the data of received packet
292 if (received > 0)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 67 /** The "received" parameter is added only for receiver-added Via Fields.
69 public static final String RECEIVED = ParameterNames.RECEIVED;
480 * Gets the received paramater of the ViaHeader. Returns null if received
483 * @return the string received value of ViaHeader
486 return getParameter(ParameterNames.RECEIVED);
490 * Sets the received parameter of ViaHeader.
492 * @param received - the newly supplied received parameter
    [all...]
  /external/webkit/WebCore/plugins/win/
PaintHooks.asm 14 ; You should have received a copy of the GNU Library General Public License
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaDataConnectionTracker.java 489 long sent, received;
504 received = rxPkts - preRxPkts;
506 if ( sent > 0 && received > 0 ) {
509 } else if (sent > 0 && received == 0) {
516 } else if (sent == 0 && received > 0) {
519 } else if (sent == 0 && received == 0) {
547 " pkts since last received");
743 * Called when EVENT_DISCONNECT_DONE is received.
774 * Called when EVENT_RESET_DONE is received so goto
    [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 36 \item To allow user to read traffic class bits of received packets.
44 \item To get flow labels of received packets. I do not know
107 of received packet, we loose one very important property of BSD socket API,
108 namely, we are not allowed to use received address for reply directly
150 initialize it to zero. If user wants to get received flowinfo, he
160 Flowinfo received and latched by a connected TCP socket also may be fetched
179 flowlabel and DS field are received as ancillary data object
ip-tunnels.tex 312 \item In 2.0 all tunneled packets were received promiscuously
314 tunnel device and packet looks as received on this. F.e.\ if host
315 received \verb|ipip| packet from host \verb|D| destined to our
338 which kernel output, via tunnel \verb|Cisco| and the packets received on it
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 847 long sent, received;
    [all...]
  /external/bison/data/
location.cc 17 # You should have received a copy of the GNU General Public License
lalr1.cc 17 # You should have received a copy of the GNU General Public License
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosASM.S 15 ; You should have received a copy of the GNU Library General Public
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 121 private TextView received; field in class:RadioInfo
270 received = (TextView) findViewById(R.id.received);
640 received.setText(rxPackets + " " + packets + ", " + rxBytes + " " + bytes);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 112 boolean received = false; field in class:PackageManagerTests.GenericReceiver
120 received = true;
173 final boolean received = false;
197 // Verify we received the broadcast
210 return receiver.received;
792 final boolean received = false;
807 // Verify we received the broadcast
816 return receiver.received;
    [all...]
  /external/bison/djgpp/
djunpack.bat 22 Rem You should have received a copy of the GNU General Public License

Completed in 594 milliseconds

1 2