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

1 2 3

  /external/bcc/src/python/bcc/
libbcc.py 21 lib.bpf_module_create_b.argtypes = [ct.c_char_p, ct.c_char_p, ct.c_uint]
23 lib.bpf_module_create_c.argtypes = [ct.c_char_p, ct.c_uint,
24 ct.POINTER(ct.c_char_p), ct.c_int]
26 lib.bpf_module_create_c_from_string.argtypes = [ct.c_char_p, ct.c_uint,
27 ct.POINTER(ct.c_char_p), ct.c_int]
30 lib.bpf_module_license.restype = ct.c_char_p
36 lib.bpf_function_name.restype = ct.c_char_p
39 lib.bpf_function_start.argtypes = [ct.c_void_p, ct.c_char_p]
41 lib.bpf_function_size.argtypes = [ct.c_void_p, ct.c_char_p]
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_returnfuncptrs.py 14 get_strchr.restype = CFUNCTYPE(c_char_p, c_char_p, c_char)
29 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(addr)
39 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
57 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(
test_prototypes.py 8 # func.restype = c_char_p
9 # func(c_char_p("123"))
15 # argument tuple (c_char_p("123"), ) is destroyed after the function
19 # the c_char_p("123") object would already have a zero refcount,
81 func.argtypes = c_char_p,
92 func.restype = c_char_p
97 self.assertEqual(None, func(c_char_p(None)))
98 self.assertEqual("123", func(c_char_p("123")))
107 func.restype = c_char_p
108 func.argtypes = c_char_p,
    [all...]
test_stringptr.py 32 _fields_ = [("str", c_char_p)]
35 # c_char_p and Python string is compatible
36 # c_char_p and c_buffer is NOT compatible
46 strchr.restype = c_char_p
48 # c_char_p and Python string is compatible
49 # c_char_p and c_buffer are now compatible
50 strchr.argtypes = c_char_p, c_char
test_parameters.py 26 from ctypes import c_void_p, c_char_p
33 class CCHARP(c_char_p):
52 # XXX Replace by c_char_p tests
54 from ctypes import c_char_p, byref
56 # c_char_p.from_param on a Python String packs the string
59 self.assertIs(c_char_p.from_param(s)._obj, s)
62 self.assertEqual(c_char_p.from_param(u"123")._obj, "123")
63 self.assertRaises(UnicodeEncodeError, c_char_p.from_param, u"123\377")
65 self.assertRaises(TypeError, c_char_p.from_param, 42)
67 # calling c_char_p.from_param with a c_char_p instanc
    [all...]
test_internals.py 34 cs = c_char_p(s)
68 _fields_ = [("a", c_char_p), ("b", c_char_p)]
test_python_api.py 24 PyString_FromStringAndSize.argtypes = c_char_p, c_py_ssize_t
30 pythonapi.PyString_FromString.argtypes = (c_char_p,)
72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_cast.py 35 array = (c_char_p * 5)()
40 p = cast(array, POINTER(c_char_p))
75 s = c_char_p("hiho")
76 self.assertEqual(cast(cast(s, c_void_p), c_char_p).value,
test_funcptr.py 54 LPCTSTR = c_char_p
98 strchr.restype = c_char_p
99 strchr.argtypes = (c_char_p, c_char)
105 strtok.restype = c_char_p
107 ## strtok.argtypes = (c_char_p, c_char_p)
108 ## strtok.argtypes = (c_string, c_char_p)
test_incomplete.py 14 _fields_ = [("name", c_char_p),
test_random_things.py 16 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
67 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
  /external/python/cpython3/Lib/ctypes/test/
test_returnfuncptrs.py 13 get_strchr.restype = CFUNCTYPE(c_char_p, c_char_p, c_char)
30 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(addr)
40 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(("my_strchr", dll))
58 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(
test_prototypes.py 8 # func.restype = c_char_p
9 # func(c_char_p("123"))
15 # argument tuple (c_char_p("123"), ) is destroyed after the function
19 # the c_char_p("123") object would already have a zero refcount,
84 func.argtypes = c_char_p,
95 func.restype = c_char_p
100 self.assertEqual(None, func(c_char_p(None)))
101 self.assertEqual(b"123", func(c_char_p(b"123")))
110 func.restype = c_char_p
111 func.argtypes = c_char_p,
    [all...]
test_parameters.py 25 from ctypes import c_void_p, c_char_p
32 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p
55 # c_char_p.from_param on a Python String packs the string
58 self.assertIs(c_char_p.from_param(s)._obj, s)
61 self.assertEqual(c_char_p.from_param(b"123")._obj, b"123")
62 self.assertRaises(TypeError, c_char_p.from_param, "123\377")
63 self.assertRaises(TypeError, c_char_p.from_param, 42)
65 # calling c_char_p.from_param with a c_char_p instanc
    [all...]
test_internals.py 31 cs = c_char_p(s)
65 _fields_ = [("a", c_char_p), ("b", c_char_p)]
test_python_api.py 24 PyBytes_FromStringAndSize.argtypes = c_char_p, c_py_ssize_t
31 pythonapi.PyBytes_FromString.argtypes = (c_char_p,)
71 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_stringptr.py 34 _fields_ = [("str", c_char_p)]
37 # c_char_p and Python string is compatible
38 # c_char_p and c_buffer is NOT compatible
48 strchr.restype = c_char_p
50 # c_char_p and Python string is compatible
51 # c_char_p and c_buffer are now compatible
52 strchr.argtypes = c_char_p, c_char
test_cast.py 35 array = (c_char_p * 5)()
40 p = cast(array, POINTER(c_char_p))
75 s = c_char_p(b"hiho")
76 self.assertEqual(cast(cast(s, c_void_p), c_char_p).value,
test_funcptr.py 54 LPCTSTR = c_char_p
98 strchr.restype = c_char_p
99 strchr.argtypes = (c_char_p, c_char)
105 strtok.restype = c_char_p
107 ## strtok.argtypes = (c_char_p, c_char_p)
108 ## strtok.argtypes = (c_string, c_char_p)
test_incomplete.py 14 _fields_ = [("name", c_char_p),
test_errno.py 18 libc_open.argtypes = c_char_p, c_int
34 libc_open.argtypes = c_char_p, c_int
  /external/llvm/bindings/python/llvm/
disassembler.py 14 from ctypes import c_char_p
76 ptr = lib.LLVMCreateDisasm(c_char_p(triple), c_void_p(None), c_int(0),
101 buf = cast(c_char_p(source), POINTER(c_ubyte))
102 out_str = cast((c_byte * 255)(), c_char_p)
122 source_bytes = c_char_p(source)
123 out_str = cast((c_byte * 255)(), c_char_p)
150 library.LLVMCreateDisasm.argtypes = [c_char_p, c_void_p, c_int,
157 c_uint64, c_uint64, c_char_p, c_size_t]
166 callbacks['symbol_lookup'] = CFUNCTYPE(c_char_p, c_void_p, c_uint64,
168 POINTER(c_char_p))
    [all...]
bit_reader.py 11 from ctypes import c_char_p
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/
disassembler.py 14 from ctypes import c_char_p
76 ptr = lib.LLVMCreateDisasm(c_char_p(triple), c_void_p(None), c_int(0),
101 buf = cast(c_char_p(source), POINTER(c_ubyte))
102 out_str = cast((c_byte * 255)(), c_char_p)
122 source_bytes = c_char_p(source)
123 out_str = cast((c_byte * 255)(), c_char_p)
150 library.LLVMCreateDisasm.argtypes = [c_char_p, c_void_p, c_int,
157 c_uint64, c_uint64, c_char_p, c_size_t]
166 callbacks['symbol_lookup'] = CFUNCTYPE(c_char_p, c_void_p, c_uint64,
168 POINTER(c_char_p))
    [all...]
bit_reader.py 11 from ctypes import c_char_p

Completed in 556 milliseconds

1 2 3