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

1 2 3 4 5

  /external/valgrind/main/gdbserver_tests/
nlpasssigalrm.stderr.exp 7 ok: 1st SIGALRM received
8 ok: 2nd SIGALRM received
mcsigpass.stdoutB.exp 2 Program received signal SIGSEGV, Segmentation fault.
6 Program received signal SIGSEGV, Segmentation fault.
10 Program received signal SIGBUS, Bus error.
14 Program received signal SIGFPE, Arithmetic exception.
mcsignopass.stdoutB.exp 8 Program received signal SIGSEGV, Segmentation fault.
12 Program received signal SIGSEGV, Segmentation fault.
16 Program received signal SIGSEGV, Segmentation fault.
20 Program received signal SIGSEGV, Segmentation fault.
24 Program received signal SIGSEGV, Segmentation fault.
28 Program received signal SIGSEGV, Segmentation fault.
32 Program received signal SIGSEGV, Segmentation fault.
36 Program received signal SIGSEGV, Segmentation fault.
40 Program received signal SIGSEGV, Segmentation fault.
44 Program received signal SIGSEGV, Segmentation fault
    [all...]
nlpasssigalrm.stdoutB.exp 4 Program received signal SIGALRM, Alarm clock.
nlcontrolc.stdoutB.exp 2 Program received signal SIGTRAP, Trace/breakpoint trap.
17 Program received signal SIGTRAP, Trace/breakpoint trap.
mcbreak.stdoutB.exp 46 Program received signal SIGTRAP, Trace/breakpoint trap.
52 Program received signal SIGTRAP, Trace/breakpoint trap.
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Ping.java 27 private long received = -1; field in class:Ping
38 if (received != -1 || sent == -1) throw new IllegalStateException();
39 received = System.nanoTime();
44 if (received != -1 || sent == -1) throw new IllegalStateException();
45 received = sent - 1;
56 return received - sent;
66 return received - sent;
  /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 302 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received)
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)
430 if(verify_zkp(received, t1, ctx)
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Socket.java 128 * @param data Array where to save received data.
134 int received = 0; local
135 while (received != len) {
136 final int chunk = is.read(data, received, len - received);
141 received += chunk;
148 * @param data Array where to save received data.
164 * @param data Array where to save received data. Data size is defined by
  /external/bison/lib/
sigprocmask.c 15 You should have received a copy of the GNU General Public License
266 sig_atomic_t received[NSIG]; local
277 received[sig] = pending_array[sig];
282 received[sig] = 0;
285 if (received[sig])
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store.h 27 // 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/
ViaHeader.java 25 void setReceived(String received) throws ParseException;
  /external/v8/src/
debug-agent.cc 205 // Send the request received to the debugger.
235 int received; local
249 received = conn->Receive(&c, 1);
250 if (received <= 0) {
267 ASSERT(header_buffer_position > 1); // At least CRLF is received.
311 received = ReceiveAll(conn, buffer, content_length);
312 if (received < content_length) {
456 int received = conn->Receive(data + total_received, len - total_received); local
457 if (received <= 0) {
460 total_received += received;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
client_for_testing.py 140 '(requested %d bytes but received only %d bytes)' %
229 received = receive_bytes(socket, 2)
231 first_byte = ord(received[0])
238 second_byte = ord(received[1])
279 received as a result of handshake.
456 'Received unrecognized extension: %s' % extension)
711 received = receive_bytes(self._socket, 1)
712 if received == terminator[pos]:
714 elif received == terminator[0]:
740 received = receive_bytes(self._socket, 1
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hybi.py 179 unmask_receive: unmask received frames. When received unmasked
192 received = receive_bytes(2)
194 first_byte = ord(received[0])
201 second_byte = ord(received[1])
212 'Mask bit on the received frame did\'nt match masking '
213 'configuration for received frames')
436 # Holds body of received fragments.
515 'Received a termination frame but fragmentation '
519 'Received an intermediate frame but
    [all...]
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 201 int received = 0; local
209 received = IoBridge.recvfrom(false, fd, receivePacket.getData(), receivePacket.getOffset(), receivePacket.getLength(), 0, receivePacket, isConnected());
211 if (received > 0) {
213 target.position(oldposition + received);
215 // copy the data of received packet
216 target.put(receivePacket.getData(), 0, received); local
230 int received = 0; local
232 received = IoBridge.recvfrom(false, fd, target, 0, receivePacket, isConnected());
234 // copy the data of received packet
235 if (received > 0)
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiTrafficPoller.java 149 long sent, received; local
158 received = mRxPkts - preRxPkts;
162 if (received > 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...]
  /frameworks/base/services/java/com/android/server/am/
IntentBindRecord.java 42 /** Set when we have received the requested binder. */
43 boolean received; field in class:IntentBindRecord
62 pw.print(" received="); pw.print(received);
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityFocusAndInputFocusSyncTest.java 67 AccessibilityNodeInfo received = getInstrumentation().getUiAutomation() local
69 assertNotNull(received);
70 assertTrue(received.isAccessibilityFocused());
73 assertEquals(expected, received);
  /external/wpa_supplicant_8/src/ap/
gas_serv.h 55 unsigned int received; member in struct:gas_dialog_info
  /packages/apps/Mms/tests/src/com/android/mms/ui/
SmsTest.java 225 * @param receiveTimer timer to wait for the received message, if it is null, default timer
227 * @return true if received message is equal to what sent, otherwise, return false
242 // and then receive it. Make sure the sent and received messages are the same.
243 boolean received = false;
249 // The "msgCount + 2" is to account for the sent and received message.
251 // 2) another message could be received by the target phone during this time
260 assertEquals("The sent and received messages aren't the same",
263 received = true;
267 assertTrue("Never received the sent message", received);
    [all...]
  /ndk/sources/host-tools/make-3.81/
subproc.bat 16 rem You should have received a copy of the GNU General Public License along
  /external/smack/src/org/jivesoftware/smackx/carbons/
Carbon.java 37 * <b>received</b> with namespace <b>urn:xmpp:carbons:2</b></p> to be used.
53 * get the direction (sent or received) of the carbon.
96 received, enum constant in enum:Carbon.Direction
116 throw new Exception("sent/received must contain exactly one <forwarded> tag");

Completed in 322 milliseconds

1 2 3 4 5