Searched refs:sec (Results 1 - 25 of 381) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libxslt/libxslt/
H A Dsecurity.c106 * @sec: the security block to free
111 xsltFreeSecurityPrefs(xsltSecurityPrefsPtr sec) { argument
112 if (sec == NULL)
114 xmlFree(sec);
119 * @sec: the security block to update
128 xsltSetSecurityPrefs(xsltSecurityPrefsPtr sec, xsltSecurityOption option, argument
131 if (sec == NULL)
135 sec->readFile = func; return(0);
137 sec->createFile = func; return(0);
139 sec
158 xsltGetSecurityPrefs(xsltSecurityPrefsPtr sec, xsltSecurityOption option) argument
183 xsltSetDefaultSecurityPrefs(xsltSecurityPrefsPtr sec) argument
210 xsltSetCtxtSecurityPrefs(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt) argument
306 xsltCheckWritePath(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const char *path) argument
368 xsltCheckWrite(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
433 xsltCheckRead(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
[all...]
H A Dsecurity.h51 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...]
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsecur.c240 ssl_ResetSecurityInfo(&ss->sec, PR_TRUE);
931 ss->sec.blockSize = 1;
932 ss->sec.blockShift = 0;
935 status = sslBuffer_Grow(&ss->sec.writeBuf, 4096);
944 ss->sec.send = os->sec.send;
945 ss->sec.isServer = os->sec.isServer;
946 ss->sec.keyBits = os->sec
1001 ssl_ResetSecurityInfo(sslSecurityInfo *sec, PRBool doMemset) argument
1055 ssl_DestroySecurityInfo(sslSecurityInfo *sec) argument
1182 sslSecurityInfo *sec; local
[all...]
H A Dsslauth.c24 if (ss->opt.useSecurity && ss->sec.peerCert) {
25 return CERT_DupCertificate(ss->sec.peerCert);
45 if (!ss->opt.useSecurity || !ss->sec.peerCert) {
53 cert = CERT_DupCertificate(ss->sec.peerCert);
83 if (ss->sec.localCert) {
84 return CERT_DupCertificate(ss->sec.localCert);
86 if (ss->sec.ci.sid && ss->sec.ci.sid->localCert) {
87 return CERT_DupCertificate(ss->sec.ci.sid->localCert);
122 cipherName = ssl_cipherName[ss->sec
[all...]
H A Dsslgathr.c20 ** and is to be called multiple times until ss->sec.recordLen != 0.
76 PORT_Assert(ss->sec.hash != 0);
197 - ss->sec.hash->length;
226 if (gs->count & (ss->sec.blockSize - 1)) {
230 ss->sec.blockSize));
245 rv = (*ss->sec.dec)(ss->sec.readcx, pBuf, &nout, gs->offset,
256 macLen = ss->sec.hash->length;
258 PRUint32 sequenceNumber = ss->sec.rcvSequence++;
266 (*ss->sec
[all...]
H A Dsslcon.c427 ssl2_CreateMAC(sslSecurityInfo *sec, SECItem *readKey, SECItem *writeKey, argument
438 sec->hash = HASH_GetHashObject(HASH_AlgMD5);
439 SECITEM_CopyItem(0, &sec->sendSecret, writeKey);
440 SECITEM_CopyItem(0, &sec->rcvSecret, readKey);
447 sec->hashcx = (*sec->hash->create)();
448 if (sec->hashcx == NULL)
469 if (len > ss->sec.ci.sendBuf.space) {
470 rv = sslBuffer_Grow(&ss->sec.ci.sendBuf, len);
509 rv = (*ss->sec
788 ssl2_CalcMAC(PRUint8 * result, sslSecurityInfo * sec, const PRUint8 * data, unsigned int dataLen, unsigned int paddingLen) argument
[all...]
/external/iproute2/examples/
H A Dcbqinit.eth121 # 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 cb
[all...]
/external/tcpdump/
H A Dprint-timed.c51 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);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
H A Dos_win32.c16 void os_sleep(os_time_t sec, os_time_t usec) argument
18 if (sec)
19 Sleep(sec * 1000);
43 t->sec = (os_time_t) (tt / 1000000);
55 t->sec = now.sec;
61 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
69 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
70 sec > 60)
79 tm.tm_sec = sec;
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
H A Dos_win32.c16 void os_sleep(os_time_t sec, os_time_t usec) argument
18 if (sec)
19 Sleep(sec * 1000);
43 t->sec = (os_time_t) (tt / 1000000);
55 t->sec = now.sec;
61 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
69 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
70 sec > 60)
79 tm.tm_sec = sec;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
16 * @sec: Number of seconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member in struct:os_time
27 os_time_t sec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
50 return (a->sec < b->sec) ||
51 (a->sec
136 int sec; /* 0..59 or 60 for leap seconds */ member in struct:os_tm
[all...]
/external/valgrind/main/coregrind/
H A Dm_transtab.c182 // sec->ec2tte[ tte2ec_ec[i] ][ tte2ec_ix[i] ]
639 Bool HostExtent__is_dead (const HostExtent* hx, const Sector* sec) argument
646 hx->start, hx->len, (int)(sec - sectors), \
648 sec->tt[tteNo].entry, sec->tt[tteNo].tcptr)
651 if (sec->tt[tteNo].status == Deleted) {
661 if ((UChar*) sec->tt[tteNo].tcptr >= hx->start + hx->len) {
683 Sector* sec = &sectors[sno];
684 XArray* /* of HostExtent */ host_extents = sec->host_extents;
704 if (HostExtent__is_dead (hx, sec))
1019 addEClassNo( Sector* sec, Int ec, UShort tteno ) argument
1060 upd_eclasses_after_add( Sector* sec, Int tteno ) argument
1256 Sector* sec; local
1354 Sector* sec; local
1777 delete_tte( Sector* sec, UInt secNo, Int tteno, VexArch vex_arch ) argument
1829 delete_translations_in_sector_eclass( Sector* sec, UInt secNo, Addr64 guest_start, ULong range, Int ec, VexArch vex_arch ) argument
1869 delete_translations_in_sector( Sector* sec, UInt secNo, Addr64 guest_start, ULong range, VexArch vex_arch ) argument
1891 Sector* sec; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/thread/pth/
H A DSDL_syscond.c126 int sec; local
135 sec = ms/1000;
136 ev = pth_event(PTH_EVENT_TIME, pth_timeout(sec,(ms-sec*1000)*1000));
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccaltst.h79 int32_t hr, int32_t min, int32_t sec, int32_t ms,
88 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcaltztst.h40 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/icu/icu4c/source/test/cintltst/
H A Dccaltst.h79 int32_t hr, int32_t min, int32_t sec, int32_t ms,
88 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
/external/icu/icu4c/source/test/intltest/
H A Dcaltztst.h40 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/valgrind/main/none/tests/s390x/
H A Dtest.h56 static inline void mysleep(long sec, long usec) argument
60 tv.tv_sec = sec;
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-sec.s12 .arch_extension sec
13 @ CHECK-V6: error: architectural extension 'sec' is not allowed for the current base architecture
14 @ CHECK-V6-NEXT: .arch_extension sec
17 .type sec,%function
18 sec: label
23 @ CHECK-V6: error: architectural extension 'sec' is not allowed for the current base architecture
/external/lzma/CPP/Windows/
H A DTime.h16 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds);
/external/strace/
H A Dptp.c57 (int64_t)perout.start.sec, perout.start.nsec,
58 (int64_t)perout.period.sec, perout.period.nsec,
86 (int64_t)sysoff.ts[0].sec, sysoff.ts[0].nsec);
89 (int64_t)sysoff.ts[i].sec, sysoff.ts[i].nsec);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dscan.h13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);
38 void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec);
/external/icu/icu4c/source/i18n/
H A Dcollationrootelements.cpp119 uint32_t previousSec, sec; local
124 sec = elements[index] >> 16;
128 sec = Collation::COMMON_WEIGHT16;
130 U_ASSERT(s >= sec);
131 while(s > sec) {
132 previousSec = sec;
134 sec = elements[index++] >> 16;
136 U_ASSERT(sec == s);
209 uint32_t sec = secTer >> 16; local
210 if(sec >
[all...]

Completed in 510 milliseconds

1234567891011>>