Searched refs:times (Results 1 - 18 of 18) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/stat/
H A Dfutimens.c3 int futimens(int fd, const struct timespec times[2]) argument
5 return utimensat(fd, 0, times, 0);
H A Dfutimesat.c8 int __futimesat(int dirfd, const char *pathname, const struct timeval times[2]) argument
11 if (times) {
14 if (times[i].tv_usec >= 1000000ULL)
16 ts[i].tv_sec = times[i].tv_sec;
17 ts[i].tv_nsec = times[i].tv_usec * 1000;
20 return utimensat(dirfd, pathname, times ? ts : 0, 0);
H A Dutimensat.c7 int utimensat(int fd, const char *path, const struct timespec times[2], int flags) argument
9 int r = __syscall(SYS_utimensat, fd, path, times, flags);
13 if (times) {
17 if (times[i].tv_nsec >= 1000000000ULL) {
18 if (times[i].tv_nsec == UTIME_NOW &&
19 times[1-i].tv_nsec == UTIME_NOW) {
23 if (times[i].tv_nsec == UTIME_OMIT)
27 tmp[i].tv_sec = times[i].tv_sec;
28 tmp[i].tv_usec = times[i].tv_nsec / 1000;
/seL4-camkes-master/projects/musllibc/src/time/
H A Dtimes.c1 #include <sys/times.h>
4 clock_t times(struct tms *tms) function
H A Dutime.c6 int utime(const char *path, const struct utimbuf *times) argument
8 return utimensat(AT_FDCWD, path, times ? ((struct timespec [2]){
9 { .tv_sec = times->actime }, { .tv_sec = times->modtime }})
/seL4-camkes-master/projects/musllibc/src/legacy/
H A Dfutimes.c7 struct timespec times[2]; local
9 times[0].tv_sec = tv[0].tv_sec;
10 times[0].tv_nsec = tv[0].tv_usec * 1000;
11 times[1].tv_sec = tv[1].tv_sec;
12 times[1].tv_nsec = tv[1].tv_usec * 1000;
13 return futimens(fd, times);
H A Dlutimes.c8 struct timespec times[2]; local
9 times[0].tv_sec = tv[0].tv_sec;
10 times[0].tv_nsec = tv[0].tv_usec * 1000;
11 times[1].tv_sec = tv[1].tv_sec;
12 times[1].tv_nsec = tv[1].tv_usec * 1000;
13 return utimensat(AT_FDCWD, filename, times, AT_SYMLINK_NOFOLLOW);
/seL4-camkes-master/projects/musllibc/src/linux/
H A Dutimes.c7 int utimes(const char *path, const struct timeval times[2]) argument
9 return __futimesat(AT_FDCWD, path, times);
/seL4-camkes-master/projects/musllibc/include/sys/
H A Dtimes.h18 clock_t times (struct tms *);
/seL4-camkes-master/tools/rumprun/tests/basic/
H A Dmisc_test.c2 #include <sys/times.h>
25 * calling times() causes crash. rumprun issue #4
32 printf("checking that calling times() does not crash ... ");
33 times(&tms);
/seL4-camkes-master/projects/picotcp/docs/user_manual/
H A Dchap_api_olsr.tex18 at all times. -- cfr. RFC3626
30 multiple times, once per device.
H A Dchap_api_aodv.tex23 multiple times, once per device.
H A Dchap_api_dhcp_c.tex22 \item \texttt{callback} - the function which is executed on success or failure. This function can be called multiple times. F.e.: initially DHCP succeeded, then the DHCP server is removed long enough from the network for the lease to expire, later the server is added again to the network. The callback is called 3 times: first with code \texttt{PICO\_DHCP\_SUCCESS}, then with \texttt{PICO\_DHCP\_RESET} and finally with \texttt{PICO\_DHCP\_SUCCESS}. The callback may be called before \texttt{pico\_dhcp\_initiate\_negotiation} has returned, f.e. in case of failure to open a socket. The callback has two parameters:
H A Dchap_api_mdns.tex153 \item \texttt{callback} - Callback to call when records are found or answers to the query are received. This functions can get called multiple times when multiple answers are possible (e.g. with shared records). It's up to the application to aggregate all these received answers, this is possible with a static variable of the type pico$\_$mdns$\_$rtree.
222 The initialisation-callback can get called multiple times during run-time due to \emph{passive conflict detection}. A passive conflict occurs for unique records when a faulty Multicast DNS-responder doesn't apply conflict resolution after an occurred conflict. A passive conflict can also occur when a peer registers a \textbf{\emph{shared}} record with the same name and type combination as a \textbf{\emph{unique}} record that the local host already successfully registered on the network. Because of that, shared records have priority over unique records, so unfortunately the local host has to apply the conflict resolution-mechanism to it's earlier uniquely verified record. To be able to notify the application of an updated unique record, the callback gets called given in the initialisation-function. But since that callback maybe parses the returned records as the hostname-records and this isn't necessarily the case when a passive conflict occurs, a mechanism is needed to differ hostname-records from other records. This preprocessor-macro allows this.
/seL4-camkes-master/projects/seL4_projects_libs/libsel4vm/src/arch/x86/processor/
H A Dcpuid.c187 int t, times = entry->eax & 0xff;
191 for (t = 1; t < times; ++t) {
/seL4-camkes-master/tools/cogent/cogent/doc/
H A Ddoc.tex1024 %\begin{fundef}{\textbf{prepend}}{\tau_r \times \tau \rightarrow \tau_r}
1146 %\begin{fundef}{\textbf{mapIter}}{\overline{v} \times \overline{v} \rightarrow \evaled{I}}
1150 %\begin{fundef}{\textbf{withIter}}{\overline{v} \times \evaled{I} \rightarrow \evaled{I}}
/seL4-camkes-master/kernel/manual/parts/
H A Dthreads.tex160 Threads that have short exection times (e.g interrupt handlers) and are not frequently preempted
/seL4-camkes-master/tools/cogent/cogent/manual/
H A Dcogent-manual.tex862 different way: they can be used any number of times but they may not be modified. Again,
2061 several times. In both cases we say the value may be ``shared''.

Completed in 139 milliseconds