HomeSort by relevance Sort by last modified time
    Searched defs:timeout_ms (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/curl/lib/
tftp.c 203 timediff_t timeout_ms; local
209 timeout_ms = Curl_timeleft(state->conn->data, NULL, start);
211 if(timeout_ms < 0) {
219 maxtime = (time_t)(timeout_ms + 500) / 1000;
239 if(timeout_ms > 0)
240 maxtime = (time_t)(timeout_ms + 500) / 1000;
1229 long timeout_ms = tftp_state_timeout(conn, &event); local
    [all...]
ftp.c 338 timediff_t timeout_ms = DEFAULT_ACCEPT_TIMEOUT; local
343 timeout_ms = data->set.accepttimeout;
349 if(other && (other < timeout_ms))
352 timeout_ms = other;
355 timeout_ms -= Curl_timediff(now, data->progress.t_acceptdata);
356 if(!timeout_ms)
361 return timeout_ms;
382 time_t timeout_ms; local
388 timeout_ms = ftp_timeleft_accept(data);
390 if(timeout_ms < 0)
499 time_t timeout_ms; local
    [all...]
url.c 3806 timediff_t timeout_ms = Curl_timeleft(data, NULL, TRUE); local
    [all...]
  /external/curl/lib/vtls/
gskit.c 1026 long timeout_ms; local
1033 timeout_ms = nonblocking? 0: Curl_timeleft(data, NULL, TRUE);
1034 if(timeout_ms < 0)
1035 timeout_ms = 0;
1036 stmv.tv_sec = timeout_ms / 1000;
1037 stmv.tv_usec = (timeout_ms - stmv.tv_sec * 1000) * 1000;
1164 long timeout_ms; local
    [all...]
gtls.c 291 time_t timeout_ms; local
297 timeout_ms = Curl_timeleft(data, NULL, duringconnect);
299 if(timeout_ms < 0) {
316 timeout_ms?timeout_ms:1000);
325 else if(timeout_ms) {
327 failf(data, "SSL connection timeout at %ld", (long)timeout_ms);
    [all...]
schannel.c 919 time_t timeout_ms; local
930 timeout_ms = Curl_timeleft(data, NULL, TRUE);
    [all...]
darwinssl.c 2561 long timeout_ms; local
    [all...]
openssl.c 3267 time_t timeout_ms; local
    [all...]
  /external/kernel-headers/original/uapi/rdma/
rdma_user_cm.h 121 __u32 timeout_ms; member in struct:rdma_ucm_resolve_ip
126 __u32 timeout_ms; member in struct:rdma_ucm_resolve_addr
136 __u32 timeout_ms; member in struct:rdma_ucm_resolve_route
  /external/libnl/lib/netfilter/
ct_obj.c 230 uint64_t timeout_ms = nfnl_ct_get_timeout(ct) * 1000UL; local
232 nl_msec2str(timeout_ms, buf, sizeof(buf)));
exp_obj.c 249 uint64_t timeout_ms = nfnl_exp_get_timeout(exp) * 1000UL; local
251 nl_msec2str(timeout_ms, buf, sizeof(buf)));
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_pipe.h 48 unsigned timeout_ms; member in struct:dd_screen
  /frameworks/native/cmds/dumpstate/
utils.cpp 695 long timeout_ms = dumpsysTimeoutMs > 0 ? dumpsysTimeoutMs : options.TimeoutInMs(); local
696 std::vector<std::string> dumpsys = {"/system/bin/dumpsys", "-T", std::to_string(timeout_ms)};
    [all...]
dumpstate.cpp 679 unsigned long timeout_ms = 0; local
684 timeout_ms += 10 * (property_size + worst_write_perf) / worst_write_perf;
686 return timeout_ms > MINIMUM_LOGCAT_TIMEOUT_MS ? timeout_ms : MINIMUM_LOGCAT_TIMEOUT_MS;
880 unsigned long timeout_ms = logcat_timeout({"kernel"}); local
888 unsigned long timeout_ms; local
    [all...]
  /hardware/broadcom/libbt/src/
hardware.c 1220 uint32_t timeout_ms; local
    [all...]
  /system/bt/stack/l2cap/
l2c_utils.cc 1540 period_ms_t timeout_ms = L2CAP_BONDING_TIMEOUT * 1000; local
2601 period_ms_t timeout_ms = p_lcb->idle_timeout * 1000; local
    [all...]
  /system/core/init/
property_service.cpp 276 bool RecvUint32(uint32_t* value, uint32_t* timeout_ms) {
277 return RecvFully(value, sizeof(*value), timeout_ms);
280 bool RecvChars(char* chars, size_t size, uint32_t* timeout_ms) {
281 return RecvFully(chars, size, timeout_ms);
284 bool RecvString(std::string* value, uint32_t* timeout_ms) {
286 if (!RecvUint32(&len, timeout_ms)) {
303 if (!RecvChars(&chars[0], len, timeout_ms)) {
329 bool PollIn(uint32_t* timeout_ms) {
334 while (*timeout_ms > 0) {
336 int nr = poll(ufds, 1, *timeout_ms);
498 uint32_t timeout_ms = kDefaultSocketTimeout; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 2725 int timeout_ms; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 1592 int timeout_ms; local
4400 int timeout_ms = eapol_key_timeout_subseq; local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_audio.h 275 int timeout_ms; member in struct:msm_audio_event
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_audio.h 298 int timeout_ms; member in struct:msm_audio_event
  /hardware/qcom/msm8x26/kernel-headers/linux/
msm_audio.h 314 int timeout_ms; member in struct:msm_audio_event
  /hardware/qcom/msm8x26/original-kernel-headers/linux/
msm_audio.h 355 int timeout_ms; member in struct:msm_audio_event
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_audio.h 314 int timeout_ms; member in struct:msm_audio_event
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_audio.h 347 int timeout_ms; member in struct:msm_audio_event

Completed in 1504 milliseconds

1 23 4