Searched refs:secs (Results 26 - 40 of 40) sorted by relevance

12

/haiku-fatelf/src/bin/network/wget/src/
H A Dcmpt.c725 time_t secs = 0;
732 secs *= 10;
733 secs += *rp++ - '0';
737 if (localtime_r (&secs, tm) == NULL)
1272 unsigned long secs; /* until 2106-02-07 for 32-bit unsigned long */
1287 secs = days * 86400 + t->tm_hour * 3600 + t->tm_min * 60 + t->tm_sec;
1288 return (time_t) secs;
H A Dconvert.c176 double secs; local
184 secs = ptimer_measure (timer);
186 file_count, print_decimal (secs));
H A Dutils.c1973 int secs = (int) timeout;
1974 if (secs == 0)
1979 secs = 1;
1980 alarm (secs);
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_debug.c824 int deg = 0, min = 0, secs = 0, secsfrac = 0; local
847 secs = secs * 10 + (*cp++ - '0');
873 + (((((deg * 60) + min) * 60) + secs) * 1000)
879 - (((((deg * 60) + min) * 60) + secs) * 1000)
1166 p_secstodate (u_long secs) { argument
1168 time_t clock = secs;
/haiku-fatelf/src/apps/poorman/libhttpd/
H A Dlibhttpd.h295 extern void httpd_logstats( long secs );
H A Dlibhttpd.c3666 httpd_logstats( long secs )
/haiku-fatelf/src/bin/unzip/
H A Dtimezone.c532 long secs = *when % SECSPERDAY; local
550 _tmbuf.tm_sec = secs % SECSPERMIN;
551 _tmbuf.tm_min = (secs / SECSPERMIN) % SECSPERMIN;
552 _tmbuf.tm_hour = secs / SECSPERHOUR;
/haiku-fatelf/src/apps/clock/
H A Dcl_view.cpp294 TOnscreenView::ShowSecs(bool secs) argument
296 fOffscreenView->fShowSeconds = secs;
/haiku-fatelf/src/bin/gdb/bfd/
H A Dnlmcode.h1201 asection **secs;
1217 secs = (asection **) bfd_alloc (abfd, amt);
1218 if ((rels == NULL || secs == NULL) && count != 0)
1221 nlm_relocation_fixup_secs (abfd) = secs;
1227 if (! (*read_func) (abfd, (nlm_symbol_type *) NULL, secs, rels))
1233 ++secs;
1290 asection **secs;
1302 secs = nlm_relocation_fixup_secs (abfd);
1306 for (i = 0; i < count; i++, rels++, secs++)
1308 if (*secs
1200 asection **secs; variable
1289 asection **secs; variable
[all...]
H A Dbfd.c1282 asection **secs)
1306 memcpy (m->sections, secs, count * sizeof (asection *));
1270 bfd_record_phdr(bfd *abfd, unsigned long type, bfd_boolean flags_valid, flagword flags, bfd_boolean at_valid, bfd_vma at, bfd_boolean includes_filehdr, bfd_boolean includes_phdrs, unsigned int count, asection **secs) argument
H A Dlibcoff.h917 #define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
919 (obfd, info, ibfd, o, con, rel, isyms, secs))
H A Dsom.c2379 file_hdr->file_time.secs = 0;
6262 lst.file_time.secs = 0;
/haiku-fatelf/src/bin/network/netcat/
H A Dnetcat.c247 set the timer. Zero secs arg means unarm */
248 void arm (num, secs)
250 unsigned int secs;
252 if (secs == 0) { /* reset */
258 alarm (secs);
260 } /* if secs */
1672 -i secs delay interval for lines sent, ports scanned\n\
1677 -q secs after EOF on stdin, wait the specified number\n\
1689 -w secs timeout for connects and final net reads\n\
/haiku-fatelf/src/tests/kits/net/netperf/
H A Dnetlib.c3391 > 100 secs
3589 int usecs, secs;
3597 secs = end->tv_sec - begin->tv_sec;
3599 usecs += (secs * 1000000);
3562 int usecs, secs; local
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/bt_fs/
H A DbtClient.c1721 int secs = S_ISDIR(dnlc->st.st_mode) ? 30 : 15; local
1722 if (curTime - dnlc->entryTime > secs)

Completed in 226 milliseconds

12