HomeSort by: relevance | last modified time | path
    Searched refs:ctypes (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
bit_reader.py 9 from ctypes import POINTER
10 from ctypes import byref
11 from ctypes import c_char_p
12 from ctypes import cast
disassembler.py 9 from ctypes import CFUNCTYPE
10 from ctypes import POINTER
11 from ctypes import addressof
12 from ctypes import c_byte
13 from ctypes import c_char_p
14 from ctypes import c_int
15 from ctypes import c_size_t
16 from ctypes import c_ubyte
17 from ctypes import c_uint64
18 from ctypes import c_void_
    [all...]
common.py 9 from ctypes import POINTER
10 from ctypes import c_void_p
11 from ctypes import cdll
13 import ctypes.util
60 """ctypes function that converts this object to a function parameter."""
96 # On Linux, ctypes.cdll.LoadLibrary() respects LD_LIBRARY_PATH
97 # while ctypes.util.find_library() doesn't.
98 # See http://docs.python.org/2/library/ctypes.html#finding-shared-libraries
101 # library into a default linker search path. Always Try ctypes.cdll.LoadLibrary()
102 # with all possible library names first, then try ctypes.util.find_library()
    [all...]
object.py 79 from ctypes import c_char_p
80 from ctypes import c_char
81 from ctypes import POINTER
82 from ctypes import c_uint64
83 from ctypes import string_at
core.py 16 from ctypes import POINTER
17 from ctypes import byref
18 from ctypes import c_char_p
19 from ctypes import c_uint
  /src/external/bsd/file/dist/python/
magic.py 7 import ctypes
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;
sh.h 429 extern short ctypes [];
431 #define ctype(c, t) !!(ctypes[(unsigned char)(c)]&(t))
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
util.py 134 from ctypes import windll
135 from ctypes import GetLastError, WinError
TestRunner.py 433 # NOTE: use ctypes to access `SHFileOperationsW` on Windows to
436 from ctypes.wintypes import BOOL, HWND, LPCWSTR, UINT, WORD
437 from ctypes import addressof, byref, c_void_p, create_unicode_buffer
438 from ctypes import Structure
439 from ctypes import windll, WinError, POINTER
  /src/external/apache2/llvm/dist/libcxx/utils/
merge_archives.py 11 from ctypes.util import find_library
  /src/external/mpl/bind/dist/contrib/gitchangelog/
gitchangelog.py 99 import ctypes
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/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/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_cursor.py 6 import ctypes
  /src/crypto/external/apache2/openssl/dist/ssl/statem/
statem_clnt.c 2658 PACKET ctypes; local
2661 if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) {
2666 if (!PACKET_memdup(&ctypes, &s->s3.tmp.ctype, &s->s3.tmp.ctype_len)) {
  /src/crypto/external/apache2/openssl/dist/ssl/
t1_lib.c 4191 const uint8_t *ctypes = s->s3.tmp.ctype; local
4194 for (j = 0; j < s->s3.tmp.ctype_len; j++, ctypes++) {
4195 if (*ctypes == check_type) {
  /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/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 60 # o cleanup ctypes wrapping, would be nice to separate the ctypes details more
65 from ctypes import *
141 # ctypes doesn't implicitly convert c_void_p to the appropriate wrapper
313 # FIXME: Eliminate this and make normal constructor? Requires hiding ctypes
2449 the ctypes library and the Clang CIndex library.
  /src/external/apache2/llvm/autoconf/
configure 10252 if ! $OCAMLFIND query ctypes >/dev/null 2>/dev/null; then
10253 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --enable-bindings=ocaml specified, but ctypes is not installed" >&5
10254 $as_echo "$as_me: WARNING: --enable-bindings=ocaml specified, but ctypes is not installed" >&2;}
  /src/external/mit/isl/dist/interface/
isl.py 3 from ctypes import *
4 from ctypes.util import find_library

Completed in 81 milliseconds