Searched refs:no_delay (Results 1 - 25 of 39) sorted by relevance

12

/external/netperf/
H A Dnettest_sdp.h23 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
H A Dnettest_xti.h17 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
H A Dnettest_sctp.h18 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
H A Dnettest_bsd.h27 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...]
H A Dnettest_dlpi.h159 int no_delay; member in struct:dlpi_cl_rr_request_struct
177 int no_delay; member in struct:dlpi_cl_rr_response_struct
H A Dnettest_unix.h166 int no_delay; member in struct:dg_rr_response_struct
H A Dnettest_sdp.c376 sdp_stream_request->no_delay = rem_nodelay;
420 rem_nodelay = sdp_stream_response->no_delay;
1074 sdp_maerts_request->no_delay = rem_nodelay;
1118 rem_nodelay = sdp_maerts_response->no_delay;
1655 loc_nodelay = sdp_stream_request->no_delay;
1774 sdp_stream_response->no_delay = loc_nodelay;
1991 loc_nodelay = sdp_maerts_request->no_delay;
2111 sdp_maerts_response->no_delay = loc_nodelay;
2486 sdp_rr_request->no_delay = rem_nodelay;
2524 rem_nodelay = sdp_rr_response->no_delay;
[all...]
H A Dnettest_sctp.c546 sctp_stream_request->no_delay = rem_nodelay;
595 rem_nodelay = sctp_stream_response->no_delay;
1160 loc_nodelay = sctp_stream_request->no_delay;
1262 sctp_stream_response->no_delay = loc_nodelay;
1676 sctp_stream_request->no_delay = rem_nodelay;
1725 rem_nodelay = sctp_stream_response->no_delay;
2323 loc_nodelay = sctp_stream_request->no_delay;
2432 sctp_stream_response->no_delay = loc_nodelay;
2777 sctp_rr_request->no_delay = rem_nodelay;
2814 rem_nodelay = sctp_rr_response->no_delay;
[all...]
/external/chromium_org/rlz/lib/
H A Dfinancial_ping.h34 // 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);
H A Dfinancial_ping.cc352 bool FinancialPing::IsPingTime(Product product, bool no_delay) { argument
373 if (no_delay && has_events)
/external/chromium_org/chrome/browser/extensions/api/socket/
H A Dtcp_socket_unittest.cc35 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);
/external/chromium_org/jingle/glue/
H A Dpseudotcp_adapter.h60 void SetNoDelay(bool no_delay);
H A Dpseudotcp_adapter.cc51 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) { argument
590 core_->SetNoDelay(no_delay);
/external/chromium_org/extensions/browser/api/socket/
H A Dtls_socket.h65 virtual bool SetNoDelay(bool no_delay) OVERRIDE;
H A Dsocket.h85 virtual bool SetNoDelay(bool no_delay);
H A Dsocket.cc90 bool Socket::SetNoDelay(bool no_delay) { return false; } argument
H A Dtcp_socket.h46 virtual bool SetNoDelay(bool no_delay) OVERRIDE;
H A Dtcp_socket.cc185 bool TCPSocket::SetNoDelay(bool no_delay) { argument
188 return socket_->SetNoDelay(no_delay);
/external/chromium_org/net/socket/
H A Dtcp_client_socket.h68 virtual bool SetNoDelay(bool no_delay);
H A Dtcp_socket_libevent.h64 bool SetNoDelay(bool no_delay);
H A Dtcp_socket_win.h74 bool SetNoDelay(bool no_delay);
H A Dtcp_client_socket.cc288 bool TCPClientSocket::SetNoDelay(bool no_delay) { argument
289 return socket_->SetNoDelay(no_delay);
H A Dtcp_socket_libevent.cc47 bool SetTCPNoDelay(int fd, bool no_delay) { argument
48 int on = no_delay ? 1 : 0;
410 bool TCPSocketLibevent::SetNoDelay(bool no_delay) { argument
412 return SetTCPNoDelay(socket_->socket_fd(), no_delay);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dopen-syscall-tp-fields.c14 .no_delay = true,
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dperf.h223 bool no_delay; member in struct:perf_record_opts

Completed in 455 milliseconds

12