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

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
14 # argument tuple (c_char_p("123"), ) is destroyed after the function
18 # the c_char_p("123") object would already have a zero refcount,
80 func.argtypes = c_char_p,
91 func.restype = c_char_p
96 self.assertEqual(None, func(c_char_p(None)))
97 self.assertEqual("123", func(c_char_p("123")))
106 func.restype = c_char_p
107 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 24 from ctypes import c_void_p, c_char_p namespace
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref namespace
55 # c_char_p.from_param on a Python String packs the string
58 self.assertTrue(c_char_p.from_param(s)._obj is s)
61 self.assertEqual(c_char_p.from_param(u"123")._obj, "123")
62 self.assertRaises(UnicodeEncodeError, c_char_p.from_param, u"123\377")
64 self.assertRaises(TypeError, c_char_p.from_param, 42)
66 # 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 34 array = (c_char_p * 5)()
39 p = cast(array, POINTER(c_char_p))
74 s = c_char_p("hiho")
75 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 17 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
test_keeprefs.py 14 x = c_char_p()
18 x = c_char_p("spam")
35 _fields_ = [("a", c_char_p),
36 ("b", c_char_p)]
99 _fields_ = [("p", POINTER(c_char_p))]
101 i = c_char_p("abc def")
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
14 # argument tuple (c_char_p("123"), ) is destroyed after the function
18 # the c_char_p("123") object would already have a zero refcount,
80 func.argtypes = c_char_p,
91 func.restype = c_char_p
96 self.assertEqual(None, func(c_char_p(None)))
97 self.assertEqual("123", func(c_char_p("123")))
106 func.restype = c_char_p
107 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 24 from ctypes import c_void_p, c_char_p namespace
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref namespace
55 # c_char_p.from_param on a Python String packs the string
58 self.assertTrue(c_char_p.from_param(s)._obj is s)
61 self.assertEqual(c_char_p.from_param(u"123")._obj, "123")
62 self.assertRaises(UnicodeEncodeError, c_char_p.from_param, u"123\377")
64 self.assertRaises(TypeError, c_char_p.from_param, 42)
66 # 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 34 array = (c_char_p * 5)()
39 p = cast(array, POINTER(c_char_p))
74 s = c_char_p("hiho")
75 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 17 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
test_keeprefs.py 14 x = c_char_p()
18 x = c_char_p("spam")
35 _fields_ = [("a", c_char_p),
36 ("b", c_char_p)]
99 _fields_ = [("p", POINTER(c_char_p))]
101 i = c_char_p("abc def")
  /external/llvm/bindings/python/llvm/
disassembler.py 14 from ctypes import c_char_p namespace
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 namespace
19 out = c_char_p(None)
28 library.LLVMParseBitcode.argtypes = [MemoryBuffer, POINTER(c_object_p), POINTER(c_char_p)]

Completed in 120 milliseconds

1 2 3