| /src/external/bsd/file/dist/python/ |
| magic.py | 7 import ctypes namespace 12 from ctypes import * 13 from ctypes.util import find_library 18 Loads the shared library through ctypes and returns a library 19 L{ctypes.CDLL} instance 21 return ctypes.cdll.LoadLibrary(find_library('magic'))
|
| /src/bin/ksh/ |
| misc.c | 21 short ctypes [UCHAR_MAX+1]; /* type bits for unsigned char */ variable 40 ctypes[i] &= ~C_IFS; 41 ctypes[0] |= C_IFS; /* include \0 in C_IFS */ 44 ctypes[(unsigned char) *s++] |= t; 53 ctypes[c] |= C_ALPHA; 55 ctypes[c] |= C_ALPHA; 56 ctypes['_'] |= C_ALPHA;
|
| /src/crypto/external/bsd/openssl/dist/ssl/statem/ |
| statem_clnt.c | 2389 PACKET ctypes; local 2392 if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) { 2397 if (!PACKET_memdup(&ctypes, &s->s3.tmp.ctype, &s->s3.tmp.ctype_len)) {
|
| /src/crypto/external/bsd/openssl/dist/ssl/ |
| t1_lib.c | 2834 const uint8_t *ctypes = s->s3.tmp.ctype; local 2837 for (j = 0; j < s->s3.tmp.ctype_len; j++, ctypes++) { 2838 if (*ctypes == check_type) {
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/statem/ |
| statem_clnt.c | 2504 PACKET ctypes; local 2507 if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) { 2514 if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) {
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/ |
| t1_lib.c | 2355 const uint8_t *ctypes = s->s3->tmp.ctype; local 2358 for (j = 0; j < s->s3->tmp.ctype_len; j++, ctypes++) { 2359 if (*ctypes == check_type) {
|
| /src/external/mpl/bind/dist/contrib/gitchangelog/ |
| gitchangelog.py | 99 import ctypes namespace 102 from ctypes import ( 113 from ctypes.wintypes import BYTE, WORD, LPWSTR, BOOL, DWORD, LPVOID, HANDLE 123 LPBYTE = ctypes.POINTER(BYTE) 147 LPSTARTUPINFOW = ctypes.POINTER(STARTUPINFOW) 157 LPPROCESS_INFORMATION = ctypes.POINTER(PROCESS_INFORMATION) 159 class DUMMY_HANDLE(ctypes.c_void_p):
|
| /src/crypto/external/apache2/openssl/dist/ssl/statem/ |
| statem_clnt.c | 2660 PACKET ctypes; local 2663 if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) { 2668 if (!PACKET_memdup(&ctypes, &s->s3.tmp.ctype, &s->s3.tmp.ctype_len)) {
|
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| t1_lib.c | 4230 const uint8_t *ctypes = s->s3.tmp.ctype; local 4233 for (j = 0; j < s->s3.tmp.ctype_len; j++, ctypes++) { 4234 if (*ctypes == check_type) {
|