Searched refs:tm (Results 26 - 50 of 683) sorted by relevance

1234567891011>>

/external/libnl/src/lib/
H A Dtc.c99 struct nl_cli_tc_module *tm; local
101 nl_list_for_each_entry(tm, &tc_modules, tm_list)
102 if (tm->tm_ops == ops)
103 return tm;
110 struct nl_cli_tc_module *tm; local
112 if ((tm = __nl_cli_tc_lookup(ops)))
113 return tm;
130 if (!(tm = __nl_cli_tc_lookup(ops))) {
137 return tm;
140 void nl_cli_tc_register(struct nl_cli_tc_module *tm) argument
159 nl_cli_tc_unregister(struct nl_cli_tc_module *tm) argument
[all...]
/external/clang/test/Modules/
H A Dtag-injection.cpp3 // RUN: echo 'struct tm;' > %t/a.h
4 // RUN: echo 'struct X {}; void foo(struct tm*);' > %t/b.h
11 using ::tm;
/external/fio/
H A Dtickmarks.h9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
H A D26-1-buildonly.c9 size_t strftime(char *, size_t, const char *, const struct tm *);
16 const struct tm *);
/external/testng/src/main/java/org/testng/internal/
H A DBshMock.java8 public boolean includeMethodFromExpression(String expression, ITestNGMethod tm) { argument
H A DIBsh.java6 boolean includeMethodFromExpression(String expression, ITestNGMethod tm); argument
H A DBsh.java17 public boolean includeMethodFromExpression(String expression, ITestNGMethod tm) { argument
23 for (String group : tm.getGroups()) {
26 setContext(interpreter, tm.getMethod(), groups, tm);
50 private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestNGMethod tm) { argument
54 interpreter.set("testngMethod", tm);
/external/webrtc/webrtc/base/
H A Dtimeutils_unittest.cc131 struct tm tm; local
135 CurrentTmTime(&tm, &microseconds);
138 // Assert that 'tm' represents a time between 'before' and 'after'.
141 time_t t = ::mktime(&tm) + local_delta;
196 std::tm tm; local
197 tm.tm_year = year - 1900; // std::tm is year 1900 based.
198 tm
249 std::tm* tm = std::gmtime(&t); local
253 std::tm tm; local
[all...]
/external/adhd/cras/src/server/
H A Dcras_tm.c57 struct cras_tm *tm,
74 DL_APPEND(tm->timers, t);
79 void cras_tm_cancel_timer(struct cras_tm *tm, struct cras_timer *t) argument
81 DL_DELETE(tm->timers, t);
90 void cras_tm_deinit(struct cras_tm *tm) argument
94 DL_FOREACH(tm->timers, t) {
95 DL_DELETE(tm->timers, t);
98 free(tm);
101 int cras_tm_get_next_timeout(const struct cras_tm *tm, struct timespec *ts) argument
107 if (!tm
56 cras_tm_create_timer( struct cras_tm *tm, unsigned int ms, void (*cb)(struct cras_timer *t, void *data), void *cb_data) argument
127 cras_tm_call_callbacks(struct cras_tm *tm) argument
[all...]
/external/libcxx/test/std/language.support/support.runtime/
H A Dctime.pass.cpp28 std::tm tm = {}; local
32 ((void)tm); // Prevent unused warning
35 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
38 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
40 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
41 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
47 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
/external/libcxx/test/std/utilities/time/date.time/
H A Dctime.pass.cpp26 std::tm tm = {}; local
31 ((void)tm); // Prevent unused warning
35 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
38 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
40 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
41 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
43 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
/external/testng/src/main/java/org/testng/remote/strprotocol/
H A DIRemoteTestListener.java12 void onStart(TestMessage tm); argument
14 void onFinish(TestMessage tm); argument
/external/toybox/toys/other/
H A Duptime.c30 struct tm *tm; local
42 tm = localtime(&t);
43 strftime(toybuf, sizeof(toybuf), "%F %T", tm);
49 tm = localtime(&t);
69 xprintf(" %02d:%02d:%02d up ", tm->tm_hour, tm->tm_min, tm->tm_sec);
/external/ppp/pppd/plugins/radius/
H A Dutil.c23 * Purpose: Turns printable string into correct tm struct entries.
33 void rc_str2tm (char *valstr, struct tm *tm) argument
42 tm->tm_mon = i;
48 tm->tm_mday = atoi (&valstr[4]);
51 tm->tm_year = atoi (&valstr[7]) - 1900;
/external/strace/tests/
H A Dpselect6.c60 }, tm = tm_in; local
98 assert(syscall(__NR_pselect6, fds[1] + 1, NULL, set[1], NULL, &tm.ts, NULL) == 3);
104 fds[1], (long long) tm.ts.tv_sec,
105 zero_extend_signed_to_ull(tm.ts.tv_nsec));
123 tm.ts.tv_sec = 0;
124 tm.ts.tv_nsec = 123;
125 assert(pselect(FD_SETSIZE + 1, set[0], set[1], NULL, &tm.ts, &mask) == 0);
133 tm.ts.tv_sec = 0xdeadbeefU;
134 tm.ts.tv_nsec = 0xfacefeedU;
135 assert(pselect(0, NULL, NULL, NULL, &tm
[all...]
/external/strace/tests-m32/
H A Dpselect6.c60 }, tm = tm_in; local
98 assert(syscall(__NR_pselect6, fds[1] + 1, NULL, set[1], NULL, &tm.ts, NULL) == 3);
104 fds[1], (long long) tm.ts.tv_sec,
105 zero_extend_signed_to_ull(tm.ts.tv_nsec));
123 tm.ts.tv_sec = 0;
124 tm.ts.tv_nsec = 123;
125 assert(pselect(FD_SETSIZE + 1, set[0], set[1], NULL, &tm.ts, &mask) == 0);
133 tm.ts.tv_sec = 0xdeadbeefU;
134 tm.ts.tv_nsec = 0xfacefeedU;
135 assert(pselect(0, NULL, NULL, NULL, &tm
[all...]
/external/strace/tests-mx32/
H A Dpselect6.c60 }, tm = tm_in; local
98 assert(syscall(__NR_pselect6, fds[1] + 1, NULL, set[1], NULL, &tm.ts, NULL) == 3);
104 fds[1], (long long) tm.ts.tv_sec,
105 zero_extend_signed_to_ull(tm.ts.tv_nsec));
123 tm.ts.tv_sec = 0;
124 tm.ts.tv_nsec = 123;
125 assert(pselect(FD_SETSIZE + 1, set[0], set[1], NULL, &tm.ts, &mask) == 0);
133 tm.ts.tv_sec = 0xdeadbeefU;
134 tm.ts.tv_nsec = 0xfacefeedU;
135 assert(pselect(0, NULL, NULL, NULL, &tm
[all...]
/external/boringssl/src/crypto/asn1/
H A Da_utctm.c68 int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d) argument
86 if (tm)
87 tm->tm_sec = 0;
104 if (tm) {
107 tm->tm_year = n < 50 ? n + 100 : n;
110 tm->tm_mon = n - 1;
113 tm->tm_mday = n;
116 tm->tm_hour = n;
119 tm
[all...]
H A Da_gentm.c67 int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d) argument
89 if (tm)
90 tm->tm_sec = 0;
107 if (tm) {
110 tm->tm_year = n * 100 - 1900;
113 tm->tm_year += n;
116 tm->tm_mon = n - 1;
119 tm->tm_mday = n;
122 tm
[all...]
/external/llvm/lib/Target/Sparc/
H A DLeonPasses.h35 LEONMachineFunctionPass(TargetMachine &tm, char &ID);
52 ReplaceSDIV(TargetMachine &tm);
65 FixCALL(TargetMachine &tm);
78 IgnoreZeroFlag(TargetMachine &tm);
92 InsertNOPDoublePrecision(TargetMachine &tm);
105 FixFSMULD(TargetMachine &tm);
117 ReplaceFMULS(TargetMachine &tm);
132 PreventRoundChange(TargetMachine &tm);
145 FixAllFDIVSQRT(TargetMachine &tm);
158 InsertNOPLoad(TargetMachine &tm);
[all...]
/external/curl/lib/
H A Dparsedate.c271 /* this is a clone of 'struct tm' but with all fields we don't need or use
282 /* struct tm to time since epoch in GMT time zone.
287 static time_t my_timegm(struct my_tm *tm) argument
293 if(tm->tm_year < 70)
298 year = tm->tm_year + 1900;
299 month = tm->tm_mon;
309 leap_days = year - (tm->tm_mon <= 1);
314 + leap_days + month_days_cumulative [month] + tm->tm_mday - 1) * 24
315 + tm->tm_hour) * 60 + tm
340 struct my_tm tm; local
570 const struct tm *tm; local
[all...]
/external/conscrypt/openjdk/src/main/java/org/conscrypt/
H A DJava7PlatformUtil.java44 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, argument
46 if (tm instanceof X509ExtendedTrustManager) {
47 X509ExtendedTrustManager x509etm = (X509ExtendedTrustManager) tm;
50 tm.checkClientTrusted(chain, authType);
54 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, argument
56 if (tm instanceof X509ExtendedTrustManager) {
57 X509ExtendedTrustManager x509etm = (X509ExtendedTrustManager) tm;
60 tm.checkServerTrusted(chain, authType);
64 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, argument
66 if (tm instanceo
74 checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, ConscryptEngine engine) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPU.h27 FunctionPass *createSPUNopFillerPass(SPUTargetMachine &tm);
/external/mdnsresponder/mDNSWindows/
H A DPosixCompat.h56 extern struct tm*
57 localtime_r( const time_t * clock, struct tm * result );
/external/testng/src/test/java/test/tmp/verify/
H A DVerifyInterceptor.java35 ITestNGMethod tm = mi.getMethod();
36 List<IMethodInstance> verify = verifyMethods.get(tm.getRealClass());
38 verify = findVerifyMethods(tm.getRealClass(), tm);
50 private List<IMethodInstance> findVerifyMethods(Class realClass, final ITestNGMethod tm) { argument
55 final ITestNGMethod vm = TestNGUtils.createITestNGMethod(tm, m);
60 return tm.getInstances();
78 return tm.getInstance();

Completed in 723 milliseconds

1234567891011>>