/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
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_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_memfunctions.py | 40 self.assertEqual(cast(a, c_char_p).value, "abcdef")
|
test_values.py | 53 _fields_ = [("name", c_char_p),
|
test_pointers.py | 140 func.restype = c_char_p 141 argv = (c_char_p * 2)()
|
test_unicode.py | 82 func.argtypes = [ctypes.c_char_p] 83 func.restype = ctypes.c_char_p
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
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_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_memfunctions.py | 40 self.assertEqual(cast(a, c_char_p).value, "abcdef")
|
test_values.py | 53 _fields_ = [("name", c_char_p),
|
test_pointers.py | 140 func.restype = c_char_p 141 argv = (c_char_p * 2)()
|
test_unicode.py | 82 func.argtypes = [ctypes.c_char_p] 83 func.restype = ctypes.c_char_p
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
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_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_memfunctions.py | 40 self.assertEqual(cast(a, c_char_p).value, "abcdef")
|
test_values.py | 53 _fields_ = [("name", c_char_p),
|
test_pointers.py | 140 func.restype = c_char_p 141 argv = (c_char_p * 2)()
|
test_unicode.py | 82 func.argtypes = [ctypes.c_char_p] 83 func.restype = ctypes.c_char_p
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
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_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_memfunctions.py | 40 self.assertEqual(cast(a, c_char_p).value, "abcdef")
|
test_values.py | 53 _fields_ = [("name", c_char_p),
|
/external/llvm/bindings/python/llvm/ |
core.py | 18 from ctypes import c_char_p 159 out = c_char_p(None) 263 out = c_char_p(None) 492 library.LLVMCreateMemoryBufferWithContentsOfFile.argtypes = [c_char_p, 493 POINTER(c_object_p), POINTER(c_char_p)] 501 library.LLVMModuleCreateWithName.argtypes = [c_char_p] 508 library.LLVMGetDataLayout.restype = c_char_p 510 library.LLVMSetDataLayout.argtypes = [Module, c_char_p] 514 library.LLVMGetTarget.restype = c_char_p 516 library.LLVMSetTarget.argtypes = [Module, c_char_p] [all...] |
object.py | 80 from ctypes import c_char_p 459 library.LLVMGetSectionName.restype = c_char_p 465 # Can't use c_char_p here as it isn't a NUL-terminated string. 485 library.LLVMGetSymbolName.restype = c_char_p 503 library.LLVMGetRelocationTypeName.restype = c_char_p 506 library.LLVMGetRelocationValueString.restype = c_char_p
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/ |
list_ports_osx.py | 58 cf.CFStringCreateWithCString.argtypes = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_int32] 62 cf.CFStringGetCStringPtr.restype = ctypes.c_char_p
|