/external/chromium/net/socket/ |
D | socks_client_socket_pool_unittest.cc | 85 ScopedVector<TestSocketRequest>* requests() { return test_base_.requests(); } in requests() function in net::__anon8f3f952b0111::SOCKSClientSocketPoolTest 217 pool_.CancelRequest("a", (*requests())[0]->handle()); in TEST_F() 218 pool_.CancelRequest("a", (*requests())[1]->handle()); in TEST_F() 230 (*requests())[0]->handle()->Reset(); in TEST_F() 231 (*requests())[1]->handle()->Reset(); in TEST_F() 252 pool_.CancelRequest("a", (*requests())[0]->handle()); in TEST_F() 253 pool_.CancelRequest("a", (*requests())[1]->handle()); in TEST_F() 267 (*requests())[0]->handle()->Reset(); in TEST_F() 268 (*requests())[1]->handle()->Reset(); in TEST_F()
|
D | transport_client_socket_pool_unittest.cc | 386 ScopedVector<TestSocketRequest>* requests() { return test_base_.requests(); } in requests() function in net::__anon4fded2350111::TransportClientSocketPoolTest 529 EXPECT_EQ(OK, (*requests())[0]->WaitForResult()); in TEST_F() 587 EXPECT_EQ(OK, (*requests())[0]->WaitForResult()); in TEST_F() 609 EXPECT_EQ(OK, (*requests())[6]->WaitForResult()); in TEST_F() 610 EXPECT_EQ(OK, (*requests())[7]->WaitForResult()); in TEST_F() 611 EXPECT_EQ(OK, (*requests())[8]->WaitForResult()); in TEST_F() 612 EXPECT_EQ(OK, (*requests())[9]->WaitForResult()); in TEST_F() 613 EXPECT_EQ(OK, (*requests())[10]->WaitForResult()); in TEST_F() 615 EXPECT_EQ(static_cast<int>(requests()->size()), in TEST_F() 683 EXPECT_EQ(OK, (*requests())[0]->WaitForResult()); in TEST_F() [all …]
|
/external/chromium/net/base/ |
D | cert_verifier_unittest.cc | 62 ASSERT_EQ(1u, verifier.requests()); in TEST_F() 72 ASSERT_EQ(2u, verifier.requests()); in TEST_F() 109 ASSERT_EQ(2u, verifier.requests()); in TEST_F() 137 ASSERT_EQ(1u, verifier.requests()); in TEST_F() 148 ASSERT_EQ(2u, verifier.requests()); in TEST_F() 163 ASSERT_EQ(3u, verifier.requests()); in TEST_F() 191 ASSERT_EQ(1u, verifier.requests()); in TEST_F() 206 ASSERT_EQ(kCacheSize + 1, verifier.requests()); in TEST_F() 221 ASSERT_EQ(kCacheSize + 2, verifier.requests()); in TEST_F()
|
D | dnsrr_resolver_unittest.cc | 72 ASSERT_EQ(1u, resolver.requests()); in TEST_F() 83 ASSERT_EQ(2u, resolver.requests()); in TEST_F() 94 ASSERT_EQ(3u, resolver.requests()); in TEST_F() 105 ASSERT_EQ(4u, resolver.requests()); in TEST_F() 121 ASSERT_EQ(6u, resolver.requests()); in TEST_F()
|
D | cert_verifier.cc | 258 std::vector<CertVerifierRequest*> requests; in PostAll() local 259 requests_.swap(requests); in PostAll() 262 i = requests.begin(); i != requests.end(); i++) { in PostAll()
|
/external/oprofile/events/i386/nehalem/ |
D | unit_masks | 83 0x03 loads Counts all L2 load requests 84 0x04 rfo_hit Counts the number of store RFO requests that hit the L2 cache 85 0x08 rfo_miss Counts the number of store RFO requests that miss the L2 cache 86 0x0C rfos Counts all L2 store RFO requests 94 0xFF references Counts all L2 requests for both code and data 100 0x0F mesi Counts all L2 data demand requests 105 0xF0 mesi Counts all L2 prefetch requests 106 0xFF any Counts all L2 data requests 108 …0x01 i_state Counts number of L2 demand store RFO requests where the cache line to be loaded is in… 109 …0x02 s_state Counts number of L2 store RFO requests where the cache line to be loaded is in the S … [all …]
|
/external/chromium/third_party/libevent/ |
D | evrpc.c | 390 TAILQ_INIT(&pool->requests); in evrpc_pool_new() 415 while ((request = TAILQ_FIRST(&pool->requests)) != NULL) { in evrpc_pool_free() 416 TAILQ_REMOVE(&pool->requests, request, next); in evrpc_pool_free() 466 if (TAILQ_FIRST(&pool->requests) != NULL) { in evrpc_pool_add_connection() 468 TAILQ_FIRST(&pool->requests); in evrpc_pool_add_connection() 469 TAILQ_REMOVE(&pool->requests, request, next); in evrpc_pool_add_connection() 497 if (TAILQ_FIRST(&connection->requests) == NULL) in evrpc_pool_find_connection() 579 TAILQ_INSERT_TAIL(&pool->requests, ctx, next); in evrpc_make_request() 636 struct evrpc_request_wrapper *ctx = TAILQ_FIRST(&pool->requests); in evrpc_pool_schedule() 644 TAILQ_REMOVE(&pool->requests, ctx, next); in evrpc_pool_schedule()
|
D | http.c | 634 struct evhttp_request* req = TAILQ_FIRST(&evcon->requests); in evhttp_connection_fail() 657 TAILQ_REMOVE(&evcon->requests, req, next); in evhttp_connection_fail() 666 if (TAILQ_FIRST(&evcon->requests) != NULL) in evhttp_connection_fail() 719 struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); in evhttp_connection_done() 725 TAILQ_REMOVE(&evcon->requests, req, next); in evhttp_connection_done() 738 if (TAILQ_FIRST(&evcon->requests) != NULL) { in evhttp_connection_done() 913 struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); in evhttp_read() 967 struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); in evhttp_write_connectioncb() 994 while ((req = TAILQ_FIRST(&evcon->requests)) != NULL) { in evhttp_connection_free() 995 TAILQ_REMOVE(&evcon->requests, req, next); in evhttp_connection_free() [all …]
|
/external/wpa_supplicant_8/src/wps/ |
D | http_server.c | 36 struct http_request *requests; member 101 r = srv->requests; in http_request_deinit() 107 srv->requests = r->next; in http_request_deinit() 222 req->next = srv->requests; in http_server_cb() 223 srv->requests = req; in http_server_cb() 297 http_request_free_all(srv->requests); in http_server_deinit()
|
/external/oprofile/events/i386/westmere/ |
D | unit_masks | 115 0x01 requests L1D hardware prefetch requests 117 0x04 triggers L1D hardware prefetch requests triggered 134 0x0f demand_mesi L2 data demand requests 140 0xff any All L2 data requests 154 0x03 loads L2 requests 157 0x0c rfos L2 RFO requests 165 0xff references All L2 requests 218 0x01 demand_read_data Offcore demand data read requests 219 0x02 demand_read_code Offcore demand code read requests 220 0x04 demand_rfo Offcore demand RFO requests [all …]
|
/external/junit/src/org/junit/runner/ |
D | Request.java | 6 import org.junit.internal.requests.ClassRequest; 7 import org.junit.internal.requests.FilterRequest; 8 import org.junit.internal.requests.SortingRequest;
|
/external/oprofile/events/i386/atom/ |
D | events | 8 event:0x2e counters:0,1 um:x41 minimum:6000 name:LLC_MISSES : Last level cache demand requests from… 9 event:0x2e counters:0,1 um:x4f minimum:6000 name:LLC_REFS : Last level cache demand requests from t… 29 …x28 counters:0,1 um:core,mesi minimum:6000 name:L2_IFETCH : L2 cacheable instruction fetch requests 31 event:0x2A counters:0,1 um:core,mesi minimum:6000 name:L2_ST : L2 store requests 33 …ent:0x2E counters:0,1 um:l2_rqsts,core,prefetch,mesi minimum:6000 name:L2_RQSTS : L2 cache requests 34 …x30 counters:0,1 um:core,prefetch,mesi minimum:500 name:L2_REJECT_BUSQ : Rejected L2 cache requests 35 event:0x32 counters:0,1 um:core minimum:6000 name:L2_NO_REQ : Cycles no L2 cache requests are pendi… 39 …t minimum:6000 name:BUS_REQUEST_OUTSTANDING : Outstanding cacheable data read bus requests duration 61 event:0x7F counters:0,1 um:core minimum:6000 name:BUS_IO_WAIT : IO requests waiting in the bus queue
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | stunrequest.cc | 77 std::vector<StunRequest*> requests; in Clear() local 79 requests.push_back(i->second); in Clear() 81 for (uint32 i = 0; i < requests.size(); ++i) in Clear() 82 Remove(requests[i]); in Clear()
|
/external/dnsmasq/contrib/try-all-ns/ |
D | README | 11 to use that. But I wanted it to try requests in order and treat NXDOMAIN 12 requests as a failed tcp connection. I wrote the feature into dnsmasq
|
/external/oprofile/events/arm/armv7-ca9/ |
D | events | 9 …4,5,6 um:zero minimum:500 name:CO_LF_MISS : Number of coherent linefill requests which miss in all… 10 …,4,5,6 um:zero minimum:500 name:CO_LF_HIT : Number of coherent linefill requests which hit in anot… 13 …e to any pipeline and the LSU has at least one pending linefill request but no pending TLB requests 16 event:0x65 counters:1,2,3,4,5,6 um:zero minimum:500 name:DATA_EVICT : Number of eviction requests d… 31 …B : Number of cycles where CPU is stalled because of main TLB misses on requests issued by the ins… 32 …B : Number of cycles where CPU is stalled because of main TLB misses on requests issued by the dat…
|
/external/oprofile/events/i386/arch_perfmon/ |
D | events | 7 … um:x41 minimum:6000 filter:4 name:LLC_MISSES : Last level cache demand requests from this core th… 8 …:cpuid um:x4f minimum:6000 filter:3 name:LLC_REFS : Last level cache demand requests from this core
|
/external/dropbear/ |
D | filelist.txt | 27 service.c Handles service requests (userauth or connection) 47 chansession.c Handles shell/exec requests 57 agentfwd.c Handles auth-agent forwarding requests 59 localtcpfwd.c Handles -L style tcp forwarding requests, setting
|
/external/openssh/ |
D | PROTOCOL.agent | 65 requests from the client. On success the agent may reply either with: 81 SSH2_AGENTC_ADD_IDENTITY requests for protocol 1 and protocol 2 keys 84 Two variants of these requests are SSH_AGENTC_ADD_RSA_ID_CONSTRAINED 91 SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED requests. 116 of the *_CONSTRAINED requests. Multiple constraints are appended 241 For DSA, ECDSA and RSA key add requests, "key_constraints" may only be 283 This message requests the deletion of all protocol 2 keys: 351 requests exist for protocol 1 and protocol 2 keys. 397 are separate requests for the protocol 1 and protocol 2 private key 491 it will suspend processing requests and return a SSH_AGENT_SUCCESS [all …]
|
/external/e2fsprogs/lib/ss/ |
D | execute_cmd.c | 55 struct _ss_request_entry *e = (struct _ss_request_entry *) tbl1->requests; 59 #define get_request(tbl,idx) ((tbl) -> requests + (idx))
|
/external/qemu/hw/ |
D | scsi-disk.c | 66 SCSIRequest *requests; member 101 r->next = s->requests; in scsi_new_request() 102 s->requests = r; in scsi_new_request() 111 if (s->requests == r) { in scsi_remove_request() 112 s->requests = r->next; in scsi_remove_request() 114 last = s->requests; in scsi_remove_request() 131 r = s->requests; in scsi_find_request() 315 SCSIRequest *r = s->requests; in scsi_dma_restart_cb()
|
/external/chromium/chrome/browser/download/ |
D | save_file_manager.cc | 92 StartingRequestsMap& requests = it->second; in UnregisterStartingRequest() local 93 StartingRequestsMap::iterator sit = requests.find(save_url.spec()); in UnregisterStartingRequest() 94 if (sit == requests.end()) in UnregisterStartingRequest() 99 requests.erase(sit); in UnregisterStartingRequest() 101 if (requests.empty()) in UnregisterStartingRequest()
|
/external/oprofile/events/ppc64/pa6t/ |
D | events | 24 event:0x22 counters:2 um:zero minimum:2000 name:GRP2_FETCH_REQ : Demand fetch requests made to the … 25 event:0x23 counters:3 um:zero minimum:500 name:GRP2_ICACHE_MISS_DEM__NS : Demand fetch requests mis… 26 …4 um:zero minimum:500 name:GRP2_ICACHE_MISS_ALL : Demand and spec fetch requests missing in the Ic…
|
/external/ppp/pppd/plugins/radius/etc/ |
D | radiusclient.conf.in | 29 # RADIUS server to use for authentication requests. this config 39 # RADIUS server to use for accouting requests. All that I 78 # as the contents of the NAS-Identifier attribute in RADIUS requests. No
|
/external/junit/src/org/junit/internal/requests/ |
D | package-info.java | 6 package org.junit.internal.requests;
|
/external/iptables/extensions/ |
D | libxt_connlimit.man | 29 # limit the number of parallel HTTP requests to 16 per class C sized \ 34 # limit the number of parallel HTTP requests to 16 for the link local network
|