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

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dutimes.c21 /* If times==NULL, set access and modification to current time,
23 * Else, update from *times, must be owner or super user.
25 asmlinkage long sys_utime(char __user *filename, struct utimbuf __user *times) argument
29 if (times) {
30 if (get_user(tv[0].tv_sec, &times->actime) ||
31 get_user(tv[1].tv_sec, &times->modtime))
36 return do_utimes(AT_FDCWD, filename, times ? tv : NULL, 0);
41 /* If times==NULL, set access and modification to current time,
43 * Else, update from *times, must be owner or super user.
45 long do_utimes(int dfd, char __user *filename, struct timespec *times, in argument
159 struct timeval times[2]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dfault-inject.h17 atomic_t times; member in struct:fault_attr
52 .times = ATOMIC_INIT(1), \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hostfs/
H A Dhostfs_user.c217 struct timeval times[2]; local
255 * times according to the changes to perform, and then call futimes()
264 times[0].tv_sec = atime_ts.tv_sec;
265 times[0].tv_usec = atime_ts.tv_nsec * 1000;
266 times[1].tv_sec = mtime_ts.tv_sec;
267 times[1].tv_usec = mtime_ts.tv_nsec * 1000;
270 times[0].tv_sec = attrs->ia_atime.tv_sec;
271 times[0].tv_usec = attrs->ia_atime.tv_nsec * 1000;
274 times[1].tv_sec = attrs->ia_mtime.tv_sec;
275 times[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dfault-inject.c22 int times; local
25 /* "<interval>,<probability>,<space>,<times>" */
27 &interval, &probability, &space, &times) < 4) {
35 atomic_set(&attr->times, times);
107 if (atomic_read(&attr->times) == 0)
129 if (atomic_read(&attr->times) != -1)
130 atomic_dec_not_zero(&attr->times);
257 debugfs_create_atomic_t("times", mode, dir, &attr->times);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Ddosmode.c434 int file_utime(connection_struct *conn, char *fname, struct utimbuf *times) argument
442 if(SMB_VFS_UTIME(conn,fname, times) == 0)
469 ret = SMB_VFS_UTIME(conn,fname, times);
483 struct utimbuf times; local
488 times.modtime = times.actime = mtime;
490 if (file_utime(conn, fname, &times)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc2/
H A Drc2speed.c78 #include <sys/times.h>
101 /* The following if from times(3) man page. It may need to be changed */
143 times(&tstart);
148 times(&tend);
152 #else /* !times() */
207 printf("Doing RC2_set_key %ld times\n",ca);
234 printf("Doing RC2_encrypt %ld times\n",cb);
255 printf("Doing RC2_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc4/
H A Drc4speed.c78 #include <sys/times.h>
101 /* The following if from times(3) man page. It may need to be changed */
143 times(&tstart);
148 times(&tend);
152 #else /* !times() */
206 printf("Doing RC4_set_key %ld times\n",ca);
233 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc5/
H A Drc5speed.c78 #include <sys/times.h>
101 /* The following if from times(3) man page. It may need to be changed */
143 times(&tstart);
148 times(&tend);
152 #else /* !times() */
207 printf("Doing RC5_32_set_key %ld times\n",ca);
234 printf("Doing RC5_32_encrypt %ld times\n",cb);
255 printf("Doing RC5_32_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bf/
H A Dbfspeed.c78 #include <sys/times.h>
101 /* The following if from times(3) man page. It may need to be changed */
143 times(&tstart);
148 times(&tend);
152 #else /* !times() */
207 printf("Doing BF_set_key %ld times\n",ca);
234 printf("Doing BF_encrypt %ld times\n",cb);
255 printf("Doing BF_cbc_encrypt %ld times on %ld byte blocks\n",cc,
H A Dbf_opts.c78 #include <sys/times.h>
124 /* The following if from times(3) man page. It may need to be changed */
170 times(&tstart);
175 times(&tend);
179 #else /* !times() */
201 #define print_name(name) fprintf(stderr,"Doing %s %ld times\n",name,cb);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/
H A Dbnspeed.c83 #include <sys/times.h>
107 /* The following if from times(3) man page. It may need to be changed */
136 times(&tstart);
141 times(&tend);
145 #else /* !times() */
H A Dexpspeed.c109 #include <sys/times.h>
133 /* The following if from times(3) man page. It may need to be changed */
162 times(&tstart);
167 times(&tend);
171 #else /* !times() */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/cast/
H A Dcast_spd.c78 #include <sys/times.h>
101 /* The following if from times(3) man page. It may need to be changed */
143 times(&tstart);
148 times(&tend);
152 #else /* !times() */
207 printf("Doing CAST_set_key %ld times\n",ca);
234 printf("Doing CAST_encrypt %ld times\n",cb);
255 printf("Doing CAST_cbc_encrypt %ld times on %ld byte blocks\n",cc,
H A Dcastopts.c78 #include <sys/times.h>
134 /* The following if from times(3) man page. It may need to be changed */
180 times(&tstart);
185 times(&tend);
189 #else /* !times() */
211 #define print_name(name) fprintf(stderr,"Doing %s %ld times\n",name,cb);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bf/
H A Dbfspeed.c81 #include <sys/times.h>
104 /* The following if from times(3) man page. It may need to be changed */
146 times(&tstart);
151 times(&tend);
155 #else /* !times() */
210 printf("Doing BF_set_key %ld times\n",ca);
237 printf("Doing BF_encrypt %ld times\n",cb);
258 printf("Doing BF_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbnspeed.c83 #include <sys/times.h>
107 /* The following if from times(3) man page. It may need to be changed */
136 times(&tstart);
141 times(&tend);
145 #else /* !times() */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/cast/
H A Dcast_spd.c81 #include <sys/times.h>
104 /* The following if from times(3) man page. It may need to be changed */
146 times(&tstart);
151 times(&tend);
155 #else /* !times() */
210 printf("Doing CAST_set_key %ld times\n",ca);
237 printf("Doing CAST_encrypt %ld times\n",cb);
258 printf("Doing CAST_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rc2/
H A Drc2speed.c81 #include <sys/times.h>
104 /* The following if from times(3) man page. It may need to be changed */
146 times(&tstart);
151 times(&tend);
155 #else /* !times() */
210 printf("Doing RC2_set_key %ld times\n",ca);
237 printf("Doing RC2_encrypt %ld times\n",cb);
258 printf("Doing RC2_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rc4/
H A Drc4speed.c81 #include <sys/times.h>
104 /* The following if from times(3) man page. It may need to be changed */
146 times(&tstart);
151 times(&tend);
155 #else /* !times() */
209 printf("Doing RC4_set_key %ld times\n",ca);
236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rc5/
H A Drc5speed.c81 #include <sys/times.h>
104 /* The following if from times(3) man page. It may need to be changed */
146 times(&tstart);
151 times(&tend);
155 #else /* !times() */
210 printf("Doing RC5_32_set_key %ld times\n",ca);
237 printf("Doing RC5_32_encrypt %ld times\n",cb);
258 printf("Doing RC5_32_cbc_encrypt %ld times on %ld byte blocks\n",cc,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/isofs/
H A Drock.h73 struct stamp times[0]; /* Variable number of these beasts */ member in struct:RR_TF_s
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dcopy_file.c62 * (failures to preserve mode/owner/times are not reported in exit code)
352 struct utimbuf times; local
354 times.actime = source_stat.st_atime;
355 times.modtime = source_stat.st_mtime;
357 if (utime(dest, &times) < 0)
358 bb_perror_msg("cannot preserve %s of '%s'", "times", dest);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclikrb5.c318 http_timestring(credsp->times.endtime)));
323 if (credsp->times.endtime >= (time(NULL) + 10))
394 if ((unsigned)credsp->times.starttime > time(NULL)) {
396 int time_offset =(unsigned)credsp->times.starttime-t;
407 http_timestring((unsigned)credsp->times.endtime),
408 (unsigned)credsp->times.endtime));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Dtmdiff.c80 # include <sys/times.h>
105 /* The following if from times(3) man page. It may need to be changed */
169 times(&tm->ms_tms);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Dtmdiff.c84 # include <sys/times.h>
109 /* The following if from times(3) man page. It may need to be changed */
175 times(&tm->ms_tms);

Completed in 144 milliseconds

123456