Searched refs:utime (Results 1 - 25 of 196) sorted by relevance

12345678

/macosx-10.10/ruby-106/ruby/nacl/
H A Dutime.h8 #include <utime.h>
9 int utime(const char *filename, const struct utimbuf *times);
/macosx-10.10/sudo-73/src/emul/
H A Dutime.h26 int utime(const char *, const struct utimbuf *);
28 int utime();
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dutimes.c38 * Emulate utimes(2) using utime(2), but losing sub-second granularity.
43 #include <utime.h>
54 return (utime(path, &ut));
57 return (utime(path, NULL));
/macosx-10.10/Libc-1044.1.2/include/
H A Dutime.h55 * @(#)utime.h 8.1 (Berkeley) 6/2/93
72 int utime(const char *, const struct utimbuf *);
/macosx-10.10/emacs-93/emacs/mac/inc/
H A Dutime.h1 /* Replacement utime.h file for building GNU Emacs on the Macintosh.
36 int utime(const char *path, const struct utimbuf *buf);
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dutime.c31 static char sccsid[] = "@(#)utime.c 8.1 (Berkeley) 6/4/93";
34 __FBSDID("$FreeBSD: src/lib/libc/gen/utime.c,v 1.3 2007/01/09 00:27:56 imp Exp $");
38 #include <utime.h>
41 utime(path, times) function
/macosx-10.10/libarchive-30/libarchive/cpio/test/
H A Dtest_option_u.c27 #include <utime.h>
29 #include <sys/utime.h>
60 assertEqualInt(0, utime("f", &times));
H A Dtest_option_a.c27 #include <utime.h>
29 #include <sys/utime.h>
49 * utime() on platforms that support it or by simply sleeping
70 /* If utime() isn't supported on your platform, just
76 assertEqualInt(0, utime(files[i].name, &times));
79 /* If utime() is available, this should be 1, but there's
/macosx-10.10/sudo-73/src/
H A Dutimes.c27 # include <utime.h>
29 # include "emul/utime.h"
36 * Emulate utimes() via utime()
48 return utime(file, &utb);
50 return utime(file, NULL);
/macosx-10.10/ruby-106/ruby/ext/nkf/nkf-utf8/
H A Dnkf.h113 #include <sys/utime.h>
115 #include <utime.h>
120 #include <utime.h>
122 #include <sys/utime.h>
126 #include <sys/utime.h>
128 #include <utime.h>
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dutime.c21 #undef utime macro
26 # include <utime.h>
40 /* Some systems (even some that do have <utime.h>) don't declare this
55 /* Emulate utime (file, NULL) for systems (like 4.3BSD) that do not
106 return utime (file, times);
H A Dutimens.c34 # include <utime.h>
37 /* Some systems (even some that do have <utime.h>) don't declare this
178 return utime (file, ut);
/macosx-10.10/ruby-106/ruby/lib/
H A Dbenchmark.rb283 Benchmark::Tms.new(t1.utime - t0.utime,
389 attr_reader :utime
403 # Total time, that is +utime+ + +stime+ + +cutime+ + +cstime+
411 # +utime+ as the user CPU time, +stime+ as the system CPU time,
415 def initialize(utime = 0.0, stime = 0.0, cutime = 0.0, cstime = 0.0, real = 0.0, label = nil)
416 @utime, @stime, @cutime, @cstime, @real, @label = utime, stime, cutime, cstime, real, label.to_s
417 @total = @utime + @stime + @cutime + @cstime
433 @utime
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtvtouch.c31 __STDPP__directive pragma pp:hide utime
33 #define utime ______utime
49 #include <utime.h>
53 __STDPP__directive pragma pp:nohide utime
55 #undef utime
60 extern int utime(const char*, const struct utimbuf*);
62 extern int utime(const char*, const time_t*);
236 if (!utime(path, &am))
239 if (errno != ENOENT && av == (const Tv_t*)&now && mv == (const Tv_t*)&now && !utime(path, NiL))
287 return utime(pat
[all...]
/macosx-10.10/emacs-93/emacs/src/m/
H A Dirist.h41 emacs, the utime doesn't seem to take effect (i.e. doesn't change the
42 dates at all) unless I call report_file_error *after* the utime returns!
44 if (utime (name, &utb) < 0)
48 /* For some reason, if this is taken out, then the utime above breaks! */
/macosx-10.10/postfix-255/postfix/src/oqmgr/
H A Dqmgr_move.c37 #include <utime.h>
77 if (utime(path, &tbuf) < 0) {
/macosx-10.10/postfix-255/postfix/src/qmgr/
H A Dqmgr_move.c37 #include <utime.h>
77 if (utime(path, &tbuf) < 0) {
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Drename.c27 #include <utime.h>
108 result = utime (destination, &tb);
115 result = utime (destination, tb);
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/scripts/
H A Dinline-and-minify-stylesheets-and-scripts.py78 os.utime(outputDirName, None)
/macosx-10.10/WTF-7600.1.24/WTF.vcxproj/
H A Dwork-around-vs-dependency-tracking-bugs.py62 os.utime(path, None)
/macosx-10.10/ruby-106/ruby/benchmark/other-lang/
H A Deval.rb39 [m.utime, m.real]
53 # utime
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dreport.rb19 }.utime
/macosx-10.10/ruby-106/ruby/test/rake/
H A Dfile_creation.rb27 File.utime(file_time, file_time, name) unless file_time.nil?
/macosx-10.10/OpenSSH-189/openssh/
H A Dincludes.h45 # include <utime.h>
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dgetrusage.tcl51 proc utime {} { procedure

Completed in 313 milliseconds

12345678