HomeSort by relevance Sort by last modified time
    Searched defs:tvp (Results 1 - 16 of 16) sorted by null

  /bionic/libc/upstream-netbsd/lib/libc/gen/
utime.c 52 struct timeval tv[2], *tvp; local
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
  /external/opencv3/3rdparty/libjasper/
jas_tvp.c 95 jas_tvparser_t *tvp; local
96 if (!(tvp = jas_malloc(sizeof(jas_tvparser_t)))) {
99 if (!(tvp->buf = jas_strdup(s))) {
100 jas_tvparser_destroy(tvp);
103 tvp->pos = tvp->buf;
104 tvp->tag = 0;
105 tvp->val = 0;
106 return tvp;
109 void jas_tvparser_destroy(jas_tvparser_t *tvp)
    [all...]
jpc_dec.c 305 jas_tvparser_t *tvp; local
311 if (!(tvp = jas_tvparser_create(optstr ? optstr : ""))) {
315 while (!jas_tvparser_next(tvp)) {
317 jas_tvparser_gettag(tvp)))->id) {
319 opts->maxlyrs = atoi(jas_tvparser_getval(tvp));
322 opts->debug = atoi(jas_tvparser_getval(tvp));
325 opts->maxpkts = atoi(jas_tvparser_getval(tvp));
329 jas_tvparser_gettag(tvp));
334 jas_tvparser_destroy(tvp);
    [all...]
jpc_enc.c 346 jas_tvparser_t *tvp; local
366 tvp = 0;
440 if (!(tvp = jas_tvparser_create(optstr ? optstr : ""))) {
444 while (!(ret = jas_tvparser_next(tvp))) {
446 jas_tvparser_gettag(tvp)))->id) {
448 cp->debug = atoi(jas_tvparser_getval(tvp));
451 cp->imgareatlx = atoi(jas_tvparser_getval(tvp));
454 cp->imgareatly = atoi(jas_tvparser_getval(tvp));
457 cp->tilegrdoffx = atoi(jas_tvparser_getval(tvp));
460 cp->tilegrdoffy = atoi(jas_tvparser_getval(tvp));
    [all...]
  /external/c-ares/
ahost.c 70 struct timeval *tvp, tv; local
150 tvp = ares_timeout(channel, NULL, &tv);
151 select(nfds, &read_fds, &write_fds, NULL, tvp);
acountry.c 204 struct timeval *tvp, tv; local
213 tvp = ares_timeout(channel, NULL, &tv);
214 select(nfds, &read_fds, &write_fds, NULL, tvp);
adig.c 205 struct timeval *tvp, tv; local
391 tvp = ares_timeout(channel, NULL, &tv);
392 count = select(nfds, &read_fds, &write_fds, NULL, tvp);
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 366 struct timeval tv, *tvp = NULL; local
378 tvp = &tv;
380 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp));
  /external/curl/lib/
asyn-ares.c 367 struct timeval *tvp, tv, store; local
377 tvp = ares_timeout((ares_channel)data->state.resolver, &store, &tv);
382 if(!tvp->tv_sec)
383 timeout_ms = (int)(tvp->tv_usec/1000);
openldap.c 231 struct timeval tv = {0, 1}, *tvp; local
257 tvp = &tv;
279 if(tvp)
283 rc = ldap_result(li->ld, li->msgid, LDAP_MSG_ONE, tvp, &msg);
  /external/libmicrohttpd/doc/examples/
sessions.c 721 struct timeval *tvp; local
757 tvp = &tv;
760 tvp = NULL;
761 if (-1 == select (max + 1, &rs, &ws, &es, tvp))
  /external/libmicrohttpd/src/examples/
post_example.c 704 struct timeval *tvp; local
740 tvp = &tv;
743 tvp = NULL;
744 select (max + 1, &rs, &ws, &es, tvp);
  /bionic/libc/dns/resolv/
res_send.c 1380 struct timeval tv, *tvp; local
    [all...]
  /external/fio/
io_u.c 1790 struct timespec *tvp = NULL; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 903 struct timeval *tvp; local
924 tvp = NULL;
933 tvp = &tv;
941 tvp = &tv;
974 tvp = &tv;
997 num_ready = MHD_SYS_select_ (max + 1, &rs, &ws, NULL, tvp);
1049 tvp = &tv;
1071 (NULL == tvp) ? -1 : tv.tv_sec * 1000) < 0)
    [all...]
  /external/mksh/src/
funcs.c 937 struct tbl *tvp; local
948 for (tvp = vp; tvp; tvp = tvp->u.array)
949 if (tvp->flag & ISSET) {
    [all...]

Completed in 606 milliseconds