/external/chromium_org/rlz/lib/ |
financial_ping.h | 34 // If no_delay is true, this should always ping if there are events, 36 // If no_delay is false, this should ping if current time < last_ping time 40 static bool IsPingTime(Product product, bool no_delay);
|
financial_ping.cc | 357 bool FinancialPing::IsPingTime(Product product, bool no_delay) { 378 if (no_delay && has_events)
|
/external/netperf/ |
nettest_sctp.h | 18 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:sctp_stream_request_struct 40 int no_delay; member in struct:sctp_stream_response_struct 70 int no_delay; member in struct:sctp_rr_request_struct 85 int no_delay; member in struct:sctp_rr_response_struct
|
nettest_xti.h | 17 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:xti_tcp_stream_request_struct 39 int no_delay; member in struct:xti_tcp_stream_response_struct 68 int no_delay; member in struct:xti_tcp_rr_request_struct 83 int no_delay; member in struct:xti_tcp_rr_response_struct 113 int no_delay; member in struct:xti_tcp_conn_rr_request_struct 129 int no_delay; member in struct:xti_tcp_conn_rr_response_struct 198 int no_delay; member in struct:xti_udp_rr_request_struct 213 int no_delay; member in struct:xti_udp_rr_response_struct
|
nettest_sdp.h | 23 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:sdp_stream_request_struct 45 int no_delay; member in struct:sdp_stream_response_struct 75 int no_delay; member in struct:sdp_rr_request_struct 90 int no_delay; member in struct:sdp_rr_response_struct 121 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:sdp_maerts_request_struct 143 int no_delay; member in struct:sdp_maerts_response_struct
|
nettest_bsd.h | 27 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:tcp_stream_request_struct 49 int no_delay; member in struct:tcp_stream_response_struct 78 int no_delay; /* do we disable the nagle algorithm for send */ member in struct:tcp_maerts_request_struct 100 int no_delay; member in struct:tcp_maerts_response_struct 129 int no_delay; member in struct:tcp_rr_request_struct 144 int no_delay; member in struct:tcp_rr_response_struct 174 int no_delay; member in struct:tcp_conn_rr_request_struct 190 int no_delay; member in struct:tcp_conn_rr_response_struct 220 int no_delay; member in struct:tcp_tran_rr_request_struct 236 int no_delay; member in struct:tcp_tran_rr_response_struct 308 int no_delay; member in struct:udp_rr_request_struct 323 int no_delay; member in struct:udp_rr_response_struct 353 int no_delay; member in struct:tcp_cc_request_struct 369 int no_delay; member in struct:tcp_cc_response_struct [all...] |
nettest_dlpi.h | 159 int no_delay; member in struct:dlpi_cl_rr_request_struct 177 int no_delay; member in struct:dlpi_cl_rr_response_struct
|
nettest_unix.h | 166 int no_delay; member in struct:dg_rr_response_struct
|
nettest_sctp.c | 546 sctp_stream_request->no_delay = rem_nodelay; 595 rem_nodelay = sctp_stream_response->no_delay; [all...] |
/external/chromium_org/chrome/browser/extensions/api/socket/ |
tcp_socket_unittest.cc | 35 MOCK_METHOD1(SetNoDelay, bool(bool no_delay)); 174 bool no_delay = false; local 176 .WillOnce(testing::DoAll(SaveArg<0>(&no_delay), Return(true))); 179 EXPECT_TRUE(no_delay); 182 .WillOnce(testing::DoAll(SaveArg<0>(&no_delay), Return(false))); 186 EXPECT_FALSE(no_delay);
|
socket.cc | 92 bool Socket::SetNoDelay(bool no_delay) {
|
socket.h | 74 virtual bool SetNoDelay(bool no_delay);
|
tcp_socket.cc | 186 bool TCPSocket::SetNoDelay(bool no_delay) { 189 return socket_->SetNoDelay(no_delay);
|
tcp_socket.h | 47 virtual bool SetNoDelay(bool no_delay) OVERRIDE;
|
/external/chromium_org/jingle/glue/ |
pseudotcp_adapter.cc | 51 void SetNoDelay(bool no_delay); 324 void PseudoTcpAdapter::Core::SetNoDelay(bool no_delay) { 325 pseudo_tcp_.SetOption(cricket::PseudoTcp::OPT_NODELAY, no_delay ? 1 : 0); 588 void PseudoTcpAdapter::SetNoDelay(bool no_delay) { 590 core_->SetNoDelay(no_delay);
|
pseudotcp_adapter.h | 60 void SetNoDelay(bool no_delay);
|
/external/chromium_org/net/socket/ |
tcp_client_socket.h | 67 virtual bool SetNoDelay(bool no_delay);
|
tcp_socket_win.h | 69 bool SetNoDelay(bool no_delay);
|
tcp_client_socket.cc | 284 bool TCPClientSocket::SetNoDelay(bool no_delay) { 285 return socket_->SetNoDelay(no_delay);
|
tcp_socket_libevent.cc | 44 bool SetTCPNoDelay(int fd, bool no_delay) { 45 int on = no_delay ? 1 : 0; 508 bool TCPSocketLibevent::SetNoDelay(bool no_delay) { 510 return SetTCPNoDelay(socket_, no_delay);
|
tcp_socket_libevent.h | 67 bool SetNoDelay(bool no_delay);
|
/external/chromium_org/ppapi/thunk/ |
ppb_ext_socket_thunk.cc | 232 PP_Var no_delay, 242 input_args.push_back(no_delay);
|
/external/chromium_org/ppapi/cpp/extensions/dev/ |
socket_dev.h | 242 bool no_delay,
|
socket_dev.cc | 528 bool no_delay, 534 internal::ToVarConverter<bool> no_delay_var(no_delay);
|
/external/chromium_org/ppapi/c/extensions/dev/ |
ppb_ext_socket_dev.h | 373 * @param[in] no_delay A boolean <code>PP_Var</code>. 382 struct PP_Var no_delay, 587 struct PP_Var no_delay,
|