HomeSort by relevance Sort by last modified time
    Searched full:c_char (Results 26 - 50 of 63) sorted by null

12 3

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 60 buftype = c_char * size
65 buftype = c_char * init
238 class c_char(_SimpleCData): class in inherits:_SimpleCData
240 c_char.__ctype_le__ = c_char.__ctype_be__ = c_char
241 _check_size(c_char)
273 POINTER(c_char).from_param = c_char_p.from_param
wintypes.py 155 ("cFileName", c_char * MAX_PATH),
156 ("cAlternateFileName", c_char * 14)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 43 CharArray = ARRAY(c_char, 3)
96 sz = (c_char * 3).from_address(addressof(p))
test_pickling.py 70 pickle.dumps(c_char("x"))
test_byteswap.py 149 self.assertTrue(c_char.__ctype_le__ is c_char)
150 self.assertTrue(c_char.__ctype_be__ is c_char)
172 ("n", c_char),
test_bitfields.py 28 func.argtypes = POINTER(BITS), c_char
127 result = self.fail_fields(("a", c_char, 1))
128 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char'))
test_numbers.py 190 from ctypes import c_char namespace
194 v = c_char.from_address(a.buffer_info()[0])
196 self.assertTrue(type(v) is c_char)
test_strings.py 7 BUF = c_char * 4
53 BUF = c_char * 4
58 BUF = c_char * 4
test_python_api.py 72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_pep3118.py 113 (c_char, "<c", None, c_char),
test_callbacks.py 91 self.check_type(c_char, "x")
92 self.check_type(c_char, "a")
test_slicing.py 69 dll.my_strdup.restype = POINTER(c_char)
126 p = (c_char * 27)(*s)
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
swig.mli 8 | C_char of char
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pickling.py 70 pickle.dumps(c_char("x"))
test_byteswap.py 149 self.assertTrue(c_char.__ctype_le__ is c_char)
150 self.assertTrue(c_char.__ctype_be__ is c_char)
172 ("n", c_char),
test_bitfields.py 28 func.argtypes = POINTER(BITS), c_char
127 result = self.fail_fields(("a", c_char, 1))
128 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char'))
test_numbers.py 190 from ctypes import c_char namespace
194 v = c_char.from_address(a.buffer_info()[0])
196 self.assertTrue(type(v) is c_char)
test_strings.py 7 BUF = c_char * 4
53 BUF = c_char * 4
58 BUF = c_char * 4
test_python_api.py 72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_pep3118.py 113 (c_char, "<c", None, c_char),
test_callbacks.py 91 self.check_type(c_char, "x")
92 self.check_type(c_char, "a")
test_slicing.py 69 dll.my_strdup.restype = POINTER(c_char)
126 p = (c_char * 27)(*s)
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
chickenrun.swg 130 static void SWIG_Chicken_Panic (C_char *) C_noret;
131 static void SWIG_Chicken_Panic (C_char *msg)
140 SWIG_Chicken_Barf(int code, C_char *msg, ...) C_noret;
142 SWIG_Chicken_Barf(int code, C_char *msg, ...)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 49 'c': ctypes.c_char, 'u': ctypes.c_wchar,
135 if obj._type_ is ctypes.c_char:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 49 'c': ctypes.c_char, 'u': ctypes.c_wchar,
135 if obj._type_ is ctypes.c_char:

Completed in 307 milliseconds

12 3