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

1 2 3 4 5

  /prebuilts/gdb/darwin-x86/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_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_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_parameters.py 24 from ctypes import c_void_p, c_char_p
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref
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_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_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
  /prebuilts/gdb/linux-x86/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_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_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_parameters.py 24 from ctypes import c_void_p, c_char_p
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref
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_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_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
  /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_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_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_parameters.py 24 from ctypes import c_void_p, c_char_p
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref
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_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)
  /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_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_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_parameters.py 24 from ctypes import c_void_p, c_char_p
31 class CCHARP(c_char_p):
51 # XXX Replace by c_char_p tests
53 from ctypes import c_char_p, byref
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_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)
  /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...]

Completed in 643 milliseconds

1 2 3 4 5