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

12

/external/chromium_org/dbus/
H A Ddbus_statistics_unittest.cc64 int sent = 0, received = 0, block = 0; local
69 "service1", "service1.interface1", "method1", &sent, &received, &block));
71 EXPECT_EQ(0, received);
74 // Add a received call
77 "service1", "service1.interface1", "method1", &sent, &received, &block));
79 EXPECT_EQ(1, received);
86 "service1", "service1.interface1", "method1", &sent, &received, &block));
88 EXPECT_EQ(1, received);
93 int sent = 0, received = 0, block = 0; local
101 "service1", "service1.interface1", "method1", &sent, &received,
[all...]
H A Ddbus_statistics.cc193 int sent = 0, received = 0, sent_blocking = 0; local
200 received += stat->received_signals;
210 if (!sent && !received && !sent_blocking)
243 if (received) {
246 line += base::StringPrintf(" %d", received);
248 line += base::StringPrintf(" %d/min", received / dminutes);
251 " %d (%d/min)", received, received / dminutes);
256 received = 0;
267 int* received,
263 GetCalls(const std::string& service, const std::string& interface, const std::string& method, int* sent, int* received, int* blocking) argument
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DPing.java27 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/chromium_org/base/
H A Dsync_socket_unittest.cc50 int received = 0; local
52 COMPILE_ASSERT(sizeof(kSending) == sizeof(received), Invalid_Data_Size);
61 ASSERT_EQ(sizeof(kSending), socket_b->Receive(&received, sizeof(kSending)));
62 ASSERT_EQ(kSending, received);
68 received = 0;
71 ASSERT_EQ(sizeof(kSending), socket_a->Receive(&received, sizeof(kSending)));
72 ASSERT_EQ(kSending, received);
/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/chromium_org/chrome/browser/history/
H A Ddownload_row.cc28 int64 received,
45 received_bytes(received),
19 DownloadRow( const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer, const base::Time& start, const base::Time& end, const std::string& etag, const std::string& last_modified, int64 received, int64 total, content::DownloadItem::DownloadState download_state, content::DownloadDangerType danger_type, content::DownloadInterruptReason interrupt_reason, uint32 id, bool download_opened, const std::string& ext_id, const std::string& ext_name) argument
/external/smack/src/org/jivesoftware/smackx/carbons/
H A DCarbon.java37 * <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");
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dgas_serv.h55 unsigned int received; member in struct:gas_dialog_info
/external/wpa_supplicant_8/src/ap/
H A Dgas_serv.h55 unsigned int received; member in struct:gas_dialog_info
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dgas_serv.h55 unsigned int received; member in struct:gas_dialog_info
/external/bison/lib/
H A Dsigprocmask.c15 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_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store.h27 // List of SBAddFullHash (SBAddPrefix, time received and an SBFullHash).
74 int32 received; member in struct:SBAddFullHash
79 received(static_cast<int32>(r.ToTimeT())),
86 : chunk_id(id), received(r), full_hash(h) {}
88 SBAddFullHash() : chunk_id(), received(), full_hash() {}
229 // |pending_adds| is the set of full hashes which have been received
/external/chromium_org/chromeos/process_proxy/
H A Dprocess_proxy_unittest.cc56 // Method to test validity of received input. We will receive two streams of
59 // have to match 2 * |kTestLineNum| lines. The problem is the received lines
61 // abc|abcdef|defgh|gh). To deal with that, we allow to test received text
91 bool ProcessReceivedCharacter(char received, size_t stream) { argument
95 expected_line_[left_to_check_index_[stream]] == received;
163 // eventually received exit event.
214 // Wait until all data from output watcher is received (QuitTask will be
/external/chromium_org/ipc/
H A Dsync_socket_unittest.cc107 // messages have been received.
142 // When a response is received from the server, it sends the same
211 size_t length, size_t* received) {
215 *received = socket->Receive(buf, length);
229 size_t received = 1U; // Initialize to an unexpected value. local
231 base::Bind(&BlockingRead, &pair[0], &buf[0], arraysize(buf), &received));
246 EXPECT_EQ(0U, received);
259 size_t received = 1U; // Initialize to an unexpected value. local
262 kHelloStringLength, &received));
276 // Verify the socket has received th
210 BlockingRead(base::SyncSocket* socket, char* buf, size_t length, size_t* received) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFrameElementBase.cpp18 * You should have received a copy of the GNU Library General Public License
192 void HTMLFrameElementBase::setFocus(bool received) argument
194 HTMLFrameOwnerElement::setFocus(received);
196 if (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...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/net/spdyproxy/
H A DDataReductionProxySettings.java17 public static ContentLengths create(long original, long received) { argument
18 return new ContentLengths(original, received);
21 private ContentLengths(long original, long received) { argument
23 mReceived = received;
127 * Returns aggregate original and received content lengths.
160 * received if no data reducing mechanism had been applied.
168 * Retrieves the history of daily totals of bytes that were received after
/external/chromium_org/ppapi/tests/
H A Dtest_ime_input_event.cc76 // been received.
219 // we have received all resulting events from the browser.
230 bool TestImeInputEvent::AreEquivalentEvents(PP_Resource received, argument
232 if (!input_event_interface_->IsInputEvent(received) ||
239 int32_t received_type = input_event_interface_->GetType(received);
254 ime_input_event_interface_->GetText(received)) ==
262 ime_input_event_interface_->GetSegmentNumber(received);
271 if (ime_input_event_interface_->GetSegmentOffset(received, i) !=
281 received, &received_selection_start, &received_selection_end);
290 ime_input_event_interface_->GetText(received))
[all...]
H A Dtest_input_event.cc96 // been received.
184 // we have received all resulting events from the browser.
195 bool TestInputEvent::AreEquivalentEvents(PP_Resource received, argument
197 if (!input_event_interface_->IsInputEvent(received) ||
204 int32_t received_type = input_event_interface_->GetType(received);
215 switch (input_event_interface_->GetType(received)) {
224 mouse_input_event_interface_->GetButton(received) ==
226 mouse_input_event_interface_->GetClickCount(received) ==
231 pp::FloatPoint(wheel_input_event_interface_->GetDelta(received)) ==
233 pp::FloatPoint(wheel_input_event_interface_->GetTicks(received))
[all...]
/external/chromium_org/v8/src/
H A Ddebug-agent.cc226 // Send the request received to the debugger.
256 int received; local
270 received = conn->Receive(&c, 1);
271 if (received == 0) {
288 ASSERT(header_buffer_position > 1); // At least CRLF is received.
332 received = ReceiveAll(conn, buffer, content_length);
333 if (received < content_length) {
492 int received = conn->Receive(data + total_received, len - total_received); local
493 if (received == 0) {
496 total_received += received;
[all...]
/external/v8/src/
H A Ddebug-agent.cc205 // 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/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/chromium_org/chrome/browser/net/
H A Dchrome_network_data_saving_metrics_unittest.cc244 int64 received[] = {kReceivedLength}; local
251 original, 1, received, 1,
252 original, 1, received, 1,
253 original, 1, received, 1);
260 int64 received[] = {kReceivedLength}; local
266 original, 1, received, 1,
274 received[0] += kReceivedLength;
278 original, 1, received, 1,
287 received[0] += kReceivedLength;
293 original, 1, received,
322 int64 received[] = {0}; local
433 int64 received[] = {kReceivedLength, kReceivedLength}; local
486 int64 received[] = {0, kReceivedLength}; local
542 int64 received[] = {kReceivedLength, 0, 0, kReceivedLength}; local
594 int64 received[] = {kReceivedLength}; local
632 int64 received[] = {kReceivedLength}; local
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
H A Dsocket_test.cc550 int received = ki_recv(sock_, inbuf + bytes_received, local
552 if (received < 0)
555 bytes_received += received;

Completed in 866 milliseconds

12