Searched refs:timespec (Results 1 - 25 of 106) sorted by last modified time

12345

/haiku/src/add-ons/kernel/file_systems/xfs/
H A DInode.h296 void GetChangeTime(struct timespec& timestamp) const;
298 void GetModificationTime(struct timespec& timestamp) const;
300 void GetAccessTime(struct timespec& timestamp) const;
302 void GetCreationTime(struct timespec& timestamp) const;
H A DInode.cpp52 Inode::GetModificationTime(struct timespec& stamp) const
60 Inode::GetAccessTime(struct timespec& stamp) const
68 Inode::GetChangeTime(struct timespec& stamp) const
76 Inode::GetCreationTime(struct timespec& stamp) const
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dkernel_interface.cpp514 struct timespec t;
H A DInode.cpp148 struct timespec timespec; local
149 timespec.tv_sec = now / 1000000;
150 timespec.tv_nsec = (now % 1000000) * 1000;
151 btrfs_inode::SetTime(inode.access_time, timespec);
152 btrfs_inode::SetTime(inode.creation_time, timespec);
153 btrfs_inode::SetTime(inode.change_time, timespec);
154 btrfs_inode::SetTime(inode.modification_time, timespec);
/haiku/src/bin/network/ping/
H A Dping6.c283 struct timespec last, intvl;
1180 struct timespec now, timeout;
1303 * of the data portion are used to hold a UNIX "timespec" struct in VAX
1415 struct timespec tv;
1573 struct timespec tv, tp;
H A Dping.c206 static void pr_pack(char *, ssize_t, struct sockaddr_in *, struct timespec *);
213 struct timespec last, intvl;
234 char ctrl[CMSG_SPACE(sizeof(struct timespec))];
928 struct timespec now, timeout;
953 struct timespec *tv = NULL;
1037 * bytes of the data portion are used to hold a UNIX "timespec" struct in
1043 struct timespec now;
1129 pr_pack(char *buf, ssize_t cc, struct sockaddr_in *from, struct timespec *tv)
1190 struct timespec tv1;
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp1585 timespec tv[2] = {
/haiku/src/system/kernel/fs/
H A Dsocket.cpp268 timespec now;
H A Drootfs.cpp69 timespec modification_time;
70 timespec creation_time;
148 static timespec
153 timespec tv;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp692 struct timespec newTimespec = { 0, 0};
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp86 virtual timespec ModifiedTime() const
92 timespec fModifiedTime;
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c172 struct timespec *,
864 struct timespec now, timeout, finish;
1201 struct timespec *tsp, const sigset_t *sigmask)
/haiku/src/system/libnetwork/netresolv/isc/
H A Deventlib_p.h148 struct timespec due, inter;
247 struct timespec lastSelectTime;
254 struct timespec lastEventTime;
H A Dev_timers.c58 static void idle_timeout(evContext, void *, struct timespec, struct timespec);
65 struct timespec lastTouched;
66 struct timespec max_idle;
73 struct timespec
75 struct timespec x;
82 struct timespec
83 evAddTime(struct timespec addend1, struct timespec addend2) {
84 struct timespec
[all...]
/haiku/src/system/libnetwork/netresolv/include/
H A Dresolv.h189 struct timespec;
190 int res_check(res_state, struct timespec *);
/haiku/src/system/libnetwork/netresolv/include/isc/
H A Deventlib.h60 struct timespec, struct timespec));
166 struct timespec evConsTime __P((time_t sec, long nsec));
167 struct timespec evAddTime __P((struct timespec, struct timespec));
168 struct timespec evSubTime __P((struct timespec, struct timespec));
169 struct timespec evNowTim
[all...]
/haiku/headers/posix/
H A Dsignal.h254 const struct timespec* timeout);
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A DInode.h62 static void _DecodeTime(struct timespec& timespec, timeval32 time) argument
64 timespec.tv_sec = time.tv_sec;
65 timespec.tv_nsec = time.tv_usec * 1000;
67 void GetAccessTime(struct timespec& timespec) const
68 { _DecodeTime(timespec, accessTime); }
69 void GetChangeTime(struct timespec& timespec) const
70 { _DecodeTime(timespec, changeTim
[all...]
/haiku/src/libs/bsd/
H A Dkqueue.cpp47 const struct timespec *tspec)
/haiku/headers/compatibility/bsd/sys/
H A Devent.h109 const struct timespec *timeout);
/haiku/src/system/libroot/posix/
H A Dsemaphore.cpp164 const struct timespec* timeout)
210 const struct timespec* timeout)
275 sem_clockwait(sem_t* semaphore, clockid_t clock_id, const struct timespec* abstime)
288 sem_timedwait(sem_t* semaphore, const struct timespec* abstime)
/haiku/src/system/kernel/device_manager/
H A Ddevfs.cpp94 timespec modification_time;
95 timespec creation_time;
184 static timespec
189 timespec tv;
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_rwlock.cpp346 const struct timespec *abstime)
376 const struct timespec *abstime)
407 const struct timespec *abstime)
437 const struct timespec *abstime)
H A Dpthread_mutex.cpp119 const struct timespec* abstime)
145 // The timespec was not valid and the mutex could not be locked
155 pthread_mutex_timedlock(pthread_mutex_t* mutex, const struct timespec* abstime)
H A Dpthread_cond.cpp134 clockid_t clock_id, const struct timespec* abstime)
159 const struct timespec* abstime)

Completed in 170 milliseconds

12345