/external/dhcpcd/ |
eloop.c | 56 } *timeouts; variable in typeref:struct:timeout 128 for (t = timeouts; t; t = t->next) { 133 timeouts = t->next; 158 if (!timeouts || timercmp(&t->when, &timeouts->when, <)) { 159 t->next = timeouts; 160 timeouts = t; 163 for (tt = timeouts; tt->next; tt = tt->next) 183 /* This deletes all timeouts for the interface EXCEPT for ones with the 193 for (t = timeouts; t && (tt = t->next, 1); t = tt) [all...] |
/external/dbus/dbus/ |
dbus-timeout.c | 163 * Opaque data type representing a list of timeouts 165 * Automatically handles removing/re-adding timeouts 178 DBusList *timeouts; /**< Timeout objects. */ member in struct:DBusTimeoutList 213 /* free timeout_data and remove timeouts as a side effect */ 217 _dbus_list_foreach (&timeout_list->timeouts, 220 _dbus_list_clear (&timeout_list->timeouts); 246 /* Add timeouts with the new function, failing on OOM */ 251 link = _dbus_list_get_first_link (&timeout_list->timeouts); 254 DBusList *next = _dbus_list_get_next_link (&timeout_list->timeouts, 262 link2 = _dbus_list_get_first_link (&timeout_list->timeouts); [all...] |
dbus-server.c | 106 server->timeouts = NULL; 129 server->timeouts = _dbus_timeout_list_new (); 130 if (server->timeouts == NULL) 147 if (server->timeouts) 149 _dbus_timeout_list_free (server->timeouts); 150 server->timeouts = NULL; 185 _dbus_timeout_list_free (server->timeouts); 333 DBusTimeoutList *timeouts; local 342 timeouts = server->timeouts; 959 DBusTimeoutList *timeouts; local [all...] |
dbus-server-protected.h | 66 DBusTimeoutList *timeouts; /**< Our timeouts */ member in struct:DBusServer
|
/external/chromium/base/test/ |
test_timeouts.h | 10 // Returns common timeouts to use in tests. Makes it possible to adjust 11 // the timeouts for different environments (like Valgrind). 14 // Initializes the timeouts. Non thread-safe. Should be called exactly once
|
test_timeouts.cc | 65 // Note that these timeouts MUST be initialized in the correct order as
|
/external/webrtc/src/modules/interface/ |
module.h | 24 // Process any pending tasks such as timeouts.
|
/external/bluetooth/bluez/doc/ |
input-api.txt | 26 timeouts in the client it is fine to call this method.
|
serial-api.txt | 35 timeouts in the client it is fine to call this method.
|
network-api.txt | 36 timeouts in the client it is fine to call this method.
|
/external/kernel-headers/original/linux/sunrpc/ |
timer.h | 18 int ntimeouts[5]; /* Number of timeouts for the last request */
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
MockExecutor.java | 25 * avoid timeouts waiting for threads to finish.
|
MockNamedTaskExecutor.java | 25 * avoid timeouts waiting for threads to finish.
|
/external/wpa_supplicant_8/src/utils/ |
eloop.h | 15 * from registered timeouts (i.e., do something after N seconds), sockets 27 * ELOOP_ALL_CTX - eloop_cancel_timeout() magic number to match all timeouts 190 * eloop_cancel_timeout - Cancel timeouts 194 * Returns: Number of cancelled timeouts 196 * Cancel matching <handler,eloop_data,user_data> timeouts registered with 198 * cancelling all timeouts regardless of eloop_data/user_data.
|
/external/chromium/net/proxy/ |
proxy_script_fetcher.h | 23 // timeouts, maximum size constraints, content encoding, etc..
|
/external/dbus/test/name-test/ |
test-pending-call-timeout.c | 74 printf ("*** Testing pending call timeouts\n");
|
/libcore/luni/src/main/java/java/net/ |
SocketOptions.java | 43 * timeouts will be treated as 65535s timeouts; roughly 18 hours.) 50 * timeouts are not allowed.
|
/external/wpa_supplicant/ |
eloop.h | 15 * from registered timeouts (i.e., do something after N seconds), sockets 27 * ELOOP_ALL_CTX - eloop_cancel_timeout() magic number to match all timeouts 196 * eloop_cancel_timeout - Cancel timeouts 200 * Returns: Number of cancelled timeouts 202 * Cancel matching <handler,eloop_data,user_data> timeouts registered with 204 * cancelling all timeouts regardless of eloop_data/user_data.
|
radius_client.h | 42 u32 timeouts; /* @ClientTimeouts */ member in struct:hostapd_radius_server
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
eloop.h | 15 * from registered timeouts (i.e., do something after N seconds), sockets 27 * ELOOP_ALL_CTX - eloop_cancel_timeout() magic number to match all timeouts 196 * eloop_cancel_timeout - Cancel timeouts 200 * Returns: Number of cancelled timeouts 202 * Cancel matching <handler,eloop_data,user_data> timeouts registered with 204 * cancelling all timeouts regardless of eloop_data/user_data.
|
/external/openssl/include/openssl/ |
dtls1.h | 150 /* Number of read timeouts so far */ 153 /* Number of write timeouts so far */ 257 /* Timeout multipliers (timeout slice is defined in apps/timeouts.h */
|
/external/openssl/ssl/ |
dtls1.h | 150 /* Number of read timeouts so far */ 153 /* Number of write timeouts so far */ 257 /* Timeout multipliers (timeout slice is defined in apps/timeouts.h */
|
/external/qemu/slirp/ |
tcp_var.h | 180 u_long tcps_rexmttimeo; /* retransmit timeouts */ 181 u_long tcps_persisttimeo; /* persist timeouts */ 182 u_long tcps_keeptimeo; /* keepalive timeouts */
|
/external/wpa_supplicant_6/wpa_supplicant/src/radius/ |
radius_client.h | 42 u32 timeouts; /* @ClientTimeouts */ member in struct:hostapd_radius_server
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
HttpHelper.java | 25 * with timeouts.
|