HomeSort by relevance Sort by last modified time
    Searched full:received (Results 26 - 50 of 12891) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/iproute2/include/linux/
if_link.h 9 __u32 rx_packets; /* total packets received */
11 __u32 rx_bytes; /* total bytes received */
13 __u32 rx_errors; /* bad packets received */
17 __u32 multicast; /* multicast packets received */
41 __u64 rx_packets; /* total packets received */
43 __u64 rx_bytes; /* total bytes received */
45 __u64 rx_errors; /* bad packets received */
49 __u64 multicast; /* multicast packets received */
  /external/kernel-headers/original/linux/
if_link.h 9 __u32 rx_packets; /* total packets received */
11 __u32 rx_bytes; /* total bytes received */
13 __u32 rx_errors; /* bad packets received */
17 __u32 multicast; /* multicast packets received */
42 __u64 rx_packets; /* total packets received */
44 __u64 rx_bytes; /* total bytes received */
46 __u64 rx_errors; /* bad packets received */
50 __u64 multicast; /* multicast packets received */
ppp_defs.h 126 __u32 ppp_ibytes; /* bytes received */
127 __u32 ppp_ioctects; /* bytes received not in error */
128 __u32 ppp_ipackets; /* packets received */
130 __u32 ppp_ilqrs; /* # LQR frames received */
159 __u32 in_count; /* Bytes received */
177 * the last NP packet was sent or received.
181 time_t recv_idle; /* time since last NP packet received */
  /external/webkit/LayoutTests/http/tests/appcache/
top-frame-1.html 31 applicationCache.onupdateready = function() { log("FAIL: received unexpected updateready event") }
32 applicationCache.onerror = function() { log("FAIL: received unexpected error event") }
top-frame-2.html 56 applicationCache.onupdateready = function() { log("FAIL: received unexpected updateready event") }
57 applicationCache.onerror = function() { log("FAIL: received unexpected error event") }
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkReceiver.java 38 Log.d(TAG, "received ACTION_SHUTDOWN, shutting down IMS");
41 Log.e(TAG, "Received unknown intent: " + action);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/neteconet/
ec.h 15 You should have received a copy of the GNU Lesser General Public
42 #define ECTYPE_PACKET_RECEIVED 0 /* Packet received */
  /frameworks/base/obex/javax/obex/
ServerRequestHandler.java 60 * When a CREATE-EMPTY request is received, the <code>onPut()</code> method will
109 * Called when a CONNECT request is received.
115 * The headers received in the request can be retrieved from the
132 * Called when a DISCONNECT request is received.
134 * The headers received in the request can be retrieved from the
146 * Called when a SETPATH request is received.
152 * The headers received in the request can be retrieved from the
177 * Called when a DELETE request is received.
183 * The headers received in the request can be retrieved from the
200 * Called when a ABORT request is received
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netinet/
if_tr.h 14 You should have received a copy of the GNU Lesser General Public
60 unsigned long rx_packets; /* total packets received */
62 unsigned long rx_bytes; /* total bytes received */
64 unsigned long rx_errors; /* bad packets received */
68 unsigned long multicast; /* multicast packets received */
  /packages/apps/Mms/tests/src/com/android/mms/ui/
MultiPartSmsTests.java 53 // received message. You'll have to adjust the timeout in testLongSmsMessage().
115 // and never received the number back. For now, I'm just hardwiring the number
170 // and then receive it. Make sure the sent and received messages compare the same.
171 boolean received = false;
177 // The "msgCount + 2" is to account for the sent and received message.
179 // 2) another message could be received by the target phone during this time
187 assertEquals("The sent and received messages aren't the same",
190 received = true;
194 assertTrue("Never received the sent message", received);
    [all...]
  /external/mtpd/
pptp.c 269 log_print(DEBUG, "Received UNKNOWN %d", incoming.message);
273 log_print(DEBUG, "Received %s with invalid length (length = %d)",
286 log_print(DEBUG, "Received SCCRP -> Sending OCRQ "
301 log_print(DEBUG, "Received SCCRP (result = %d)",
312 log_print(DEBUG, "Received OCRQ (remote = %d)", remote);
318 log_print(DEBUG, "Received OCRP (result = %d)",
326 log_print(DEBUG, "Received STOPCCRQ");
336 log_print(DEBUG, "Received CCRQ (remote = %d)", remote);
344 log_print(DEBUG, "Received CDN (remote = %d)", remote);
351 log_print(DEBUG, "Received ECHORQ -> Sending ECHORP")
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.h 41 /** EAP-Request/Notification received */
43 /** EAP authentication started (EAP-Request/Identity received) */
55 /** EAP authentication failed (EAP-Failure received) */
77 /** A new credential received */
78 #define WPS_EVENT_CRED_RECEIVED "WPS-CRED-RECEIVED "
79 /** M2D received */
131 #define P2P_EVENT_INVITATION_RECEIVED "P2P-INVITATION-RECEIVED "
180 * This function is used to send commands to wpa_supplicant/hostapd. Received
183 * for the reply. If unsolicited messages are received, the blocking time may
187 * unsolicited messages received while waiting for the command response. Thes
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
server.cpp 114 int received = recv(clientSock, &len, 4, MSG_WAITALL); local
115 if (received < 0)
117 else if (4 != received) {
118 LOGD("received %dB: %.8X", received, len);
119 Die("Received length mismatch, expected 4");
128 received = recv(clientSock, buffer, len, MSG_WAITALL);
129 if (received < 0)
131 else if (len != received)
132 Die("Received length mismatch")
151 bool received = false; local
    [all...]
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 32 * Verify Sms and Mms cannot be received without required permissions.
64 // received successfully using the same logic if all permissions are in place
83 assertFalse("Sms received without proper permissions", receiver.isSmsReceived());
107 * A receiver that tracks if message was sent and received
116 // this is bad, received sms without having SMS permission
123 Log.w(LOG_TAG, String.format("unknown intent received: %s", intent.getAction()));
154 // set this to true, but don't notify receiver since we don't know if message received
  /external/webkit/Source/WebKit/mac/WebView/
WebDocument.h 49 @abstract Called when the corresponding data source has received data.
169 @abstract Called when the data source has received data.
170 @param data The data that the data source has received.
171 @param dataSource The data source that has received data.
177 @abstract Called when the data source has received an error.
178 @param error The error that the data source has received.
179 @param dataSource The data source that has received the error.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ppp_defs.h 122 __u32 ppp_ibytes; /* bytes received */
123 __u32 ppp_ioctects; /* bytes received not in error */
124 __u32 ppp_ipackets; /* packets received */
126 __u32 ppp_ilqrs; /* # LQR frames received */
155 __u32 in_count; /* Bytes received */
173 * the last NP packet was sent or received.
177 time_t recv_idle; /* time since last NP packet received */
  /external/wpa_supplicant/
wpa_ctrl.h 39 /** EAP-Request/Notification received */
41 /** EAP authentication started (EAP-Request/Identity received) */
47 /** EAP authentication failed (EAP-Failure received) */
92 * This function is used to send commands to wpa_supplicant/hostapd. Received
95 * for the reply. If unsolicited messages are received, the blocking time may
99 * unsolicited messages received while waiting for the command response. These
100 * messages may be received if wpa_ctrl_request() is called at the same time as
146 * function will block if no messages are available. The received response will
160 * message available to be received with wpa_ctrl_recv(). wpa_ctrl_pending() is
  /external/chromium/chrome/browser/chromeos/login/
take_photo_view.h 49 // received.
53 // frame and disables snapshot button until new frame is received.
81 // are not shown to user if received.
  /external/chromium/chrome/browser/download/
save_item.h 36 // Received a new chunk of data.
73 // Internal helper for maintaining consistent received and total sizes.
92 // Current received bytes.
  /external/chromium/chrome/browser/ui/cocoa/
command_observer_bridge_unittest.mm 14 // enabled state it has received so it can be queried by the tests to see
18 int lastCommand_; // id of last received state change
19 bool lastState_; // state of last received state change
  /external/libnl-headers/netlink/
handlers.h 93 /** Last message in a series of multi part messages received */
95 /** Report received that data was lost */
101 /** Called for every message received */
  /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...]
  /external/valgrind/main/memcheck/tests/
writev.c 58 fprintf(stderr, "Received EFAULT as expected\n");
70 fprintf(stderr, "Received EINVAL as expected\n");
78 fprintf(stderr, "Received EINVAL as expected\n");
  /external/webkit/Source/WebKit/chromium/public/
WebURLLoaderClient.h 53 // Called when response headers are received.
60 // Called when a chunk of response data is received.
63 // Called when a chunk of renderer-generated metadata is received from the cache.
  /external/webkit/Source/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 14 * You should have received a copy of the GNU Library General Public License
27 * Starts an event loop that runs until the given signal is received.
31 * \return \p true if the requested signal was received

Completed in 3119 milliseconds

12 3 4 5 6 7 8 91011>>