HomeSort by relevance Sort by last modified time
    Searched refs:sec (Results 1 - 25 of 420) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxslt/libxslt/
security.c 106 * @sec: the security block to free
111 xsltFreeSecurityPrefs(xsltSecurityPrefsPtr sec) {
112 if (sec == NULL)
114 xmlFree(sec);
119 * @sec: the security block to update
128 xsltSetSecurityPrefs(xsltSecurityPrefsPtr sec, xsltSecurityOption option,
131 if (sec == NULL)
135 sec->readFile = func; return(0);
137 sec->createFile = func; return(0);
139 sec->createDir = func; return(0)
    [all...]
security.h 51 typedef int (*xsltSecurityCheck) (xsltSecurityPrefsPtr sec,
61 xsltFreeSecurityPrefs (xsltSecurityPrefsPtr sec);
63 xsltSetSecurityPrefs (xsltSecurityPrefsPtr sec,
67 xsltGetSecurityPrefs (xsltSecurityPrefsPtr sec,
71 xsltSetDefaultSecurityPrefs (xsltSecurityPrefsPtr sec);
76 xsltSetCtxtSecurityPrefs (xsltSecurityPrefsPtr sec,
80 xsltSecurityAllow (xsltSecurityPrefsPtr sec,
84 xsltSecurityForbid (xsltSecurityPrefsPtr sec,
91 xsltCheckWrite (xsltSecurityPrefsPtr sec,
95 xsltCheckRead (xsltSecurityPrefsPtr sec,
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
CSemaphore.h 54 bool wait(int sec);
CSemaphore.cpp 67 bool CSemaphore::wait(int sec)
71 if (sec < 0)
72 sec = LONG_MAX;
74 tm.tv_sec += sec;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
spray.x 44 unsigned int sec;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 44 unsigned int sec;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 44 unsigned int sec;
  /external/skia/src/core/
SkBitmapProcState.h 114 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec))
118 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16))
124 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) {
126 SkASSERT((uint16_t)sec == sec);
127 return PACK_TWO_SHORTS(pri, sec);
130 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec)
    [all...]
  /external/iproute2/examples/
cbqinit.eth1 21 # est 1sec 8sec means, that kernel will evaluate average rate
22 # on this class with period 1sec and time constant 8sec.
25 $TC class add dev $DEVICE parent 1:0 classid :1 est 1sec 8sec cbq \
35 $TC class add dev $DEVICE parent 1:1 classid :2 est 1sec 8sec cbq \
47 $TC class add dev $DEVICE parent 1:1 classid :3 est 2sec 16sec cbq
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 143 // sec->ec2tte[ tte2ec_ec[i] ][ tte2ec_ix[i] ]
384 UInt addEClassNo ( /*MOD*/Sector* sec, Int ec, UShort tteno )
394 if (sec->ec2tte_used[ec] >= sec->ec2tte_size[ec]) {
396 vg_assert(sec->ec2tte_used[ec] == sec->ec2tte_size[ec]);
398 old_sz = sec->ec2tte_size[ec];
399 old_ar = sec->ec2tte[ec];
407 sec->ec2tte_size[ec] = new_sz;
408 sec->ec2tte[ec] = new_ar
622 Sector* sec; local
751 Sector* sec; local
1255 Sector* sec; local
    [all...]
  /external/tcpdump/
print-timed.c 51 long sec, usec; local
89 sec = EXTRACT_32BITS(&tsp->tsp_time.tv_sec);
95 if (sec < 0 && usec != 0) {
96 sec++;
97 if (sec == 0)
101 printf("%ld.%06ld", sec, usec);
  /frameworks/av/services/audioflinger/
AudioWatchdog.cpp 64 time_t sec = newTs.tv_sec - mOldTs.tv_sec; local
67 --sec;
71 // cycleNs is same as sec*1e9 + nsec, but limited to about 4 seconds
73 if (sec > 0) {
74 if (sec < 4) {
75 cycleNs += sec * 1000000000;
80 mLogTs.tv_sec += sec;
  /external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_syscond.c 126 int sec; local
135 sec = ms/1000;
136 ev = pth_event(PTH_EVENT_TIME, pth_timeout(sec,(ms-sec*1000)*1000));
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 50 uint16_t sec; member in struct:__db_system_time_
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h 48 #define TIME_SET(time, sec, microsec) time = sec
80 #define TIME_SET(time, sec, microsec) \
81 ((time).tv_sec = (sec)), ((time).tv_usec = (microsec))
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
StringUtils.java 117 final long sec = time / 1000; local
120 return String.format("%02d:%02d:%02d.%01d", hours, mins, sec, time);
136 final long sec = time / 1000; local
137 return String.format("%02d:%02d:%02d", hours, mins, sec);
153 final long sec = time / 1000; local
157 return String.format(context.getString(R.string.seconds), sec);
159 return String.format(context.getString(R.string.minute_and_seconds), sec);
  /external/wpa_supplicant_8/src/utils/
os_win32.c 16 void os_sleep(os_time_t sec, os_time_t usec)
18 if (sec)
19 Sleep(sec * 1000);
43 t->sec = (os_time_t) (tt / 1000000);
50 int os_mktime(int year, int month, int day, int hour, int min, int sec,
58 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
59 sec > 60)
68 tm.tm_sec = sec;
98 tm->sec = tm2->tm_sec;
  /bionic/libc/kernel/common/linux/
ktime.h 30 s32 sec, nsec; member in struct:__anon347::__anon348
32 s32 nsec, sec;
  /dalvik/tests/048-server-socket/src/
Main.java 11 private static void snooze(int sec) {
13 Thread.sleep(sec * 1000);
  /development/ndk/platforms/android-3/include/linux/
ktime.h 23 s32 sec, nsec; member in struct:__anon1033::__anon1034
25 s32 nsec, sec;
  /external/icu4c/test/cintltst/
ccaltst.h 75 int32_t hr, int32_t min, int32_t sec, int32_t ms,
84 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
  /external/icu4c/test/intltest/
caltztst.h 40 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0);
44 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0);
47 void dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec);
  /external/kernel-headers/original/linux/
ktime.h 51 s32 sec, nsec; member in struct:__anon8504::__anon8505
53 s32 nsec, sec;
130 * that the tv.sec field is negative and the tv.nsec field is greater
134 * tv.sec < 0 and 0 >= tv.nsec < NSEC_PER_SEC
137 /* Set a ktime_t variable to a value in sec/nsec representation: */
140 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } };
179 * tv.sec ++;
204 return (ktime_t) { .tv = { .sec = (s32)ts.tv_sec,
216 return (ktime_t) { .tv = { .sec = (s32)tv.tv_sec,
228 return (struct timespec) { .tv_sec = (time_t) kt.tv.sec,
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_win32.c 21 void os_sleep(os_time_t sec, os_time_t usec)
23 if (sec)
24 Sleep(sec * 1000);
48 t->sec = (os_time_t) (tt / 1000000);
55 int os_mktime(int year, int month, int day, int hour, int min, int sec,
63 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
64 sec > 60)
73 tm.tm_sec = sec;
  /external/wpa_supplicant_8/wpa_supplicant/
scan.h 13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>