HomeSort by relevance Sort by last modified time
    Searched defs:POINTER (Results 1 - 19 of 19) sorted by null

  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/
md5.h 37 /* POINTER defines a generic pointer type */
38 typedef unsigned char *POINTER;
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/xpt/hdr/
md5.h 27 /* POINTER defines a generic pointer type */
28 typedef unsigned char *POINTER;
  /packages/apps/OMA-DM/engine/dmlib/tool-src/servercred/hdr/
md5.h 27 /* POINTER defines a generic pointer type */
28 typedef unsigned char *POINTER;
  /external/llvm/bindings/python/llvm/
bit_reader.py 9 from ctypes import POINTER
28 library.LLVMParseBitcode.argtypes = [MemoryBuffer, POINTER(c_object_p), POINTER(c_char_p)]
common.py 10 from ctypes import POINTER
26 c_object_p = POINTER(c_void_p)
disassembler.py 11 from ctypes import POINTER
101 buf = cast(c_char_p(source), POINTER(c_ubyte))
126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
131 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
156 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
167 POINTER(c_uint64), c_uint64,
168 POINTER(c_char_p))
object.py 82 from ctypes import POINTER
474 library.LLVMGetSectionContents.restype = POINTER(c_char)
core.py 16 from ctypes import POINTER
496 POINTER(c_object_p), POINTER(c_char_p)]
526 POINTER(c_char_p)]
  /external/chromium_org/base/strings/
safe_sprintf.h 63 // It is still not legal to mix-and-match integer-like values with pointer
64 // values. For instance, you cannot pass a pointer to %x, nor can you pass an
139 enum Type { INT, UINT, STRING, POINTER };
157 // Any pointer value that can be cast to a "void*".
158 template<class T> Arg(T* p) : ptr((void*)p), type(POINTER) { }
170 // A pointer to an arbitrary object.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
92 LPINT = POINTER(c_int)
94 ## p = pointer(c_int(42))
96 x = LPINT.from_param(pointer(c_int(42)))
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
104 self.assertRaises(TypeError, LPINT.from_param, pointer(c_uint(42)))
105 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42)))
108 # The from_param class method of POINTER(typ) classes accepts what is
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre namespace
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
92 LPINT = POINTER(c_int)
94 ## p = pointer(c_int(42))
96 x = LPINT.from_param(pointer(c_int(42)))
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
104 self.assertRaises(TypeError, LPINT.from_param, pointer(c_uint(42)))
105 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42)))
108 # The from_param class method of POINTER(typ) classes accepts what is
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre namespace
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfscanf.c 58 #define POINTER 0x00020 /* p: void * (as hex) */
114 wchar_t *wcp; /* handy wide character pointer */
265 case 'p': /* pointer format is like hex */
266 flags |= POINTER | PFXOK;
736 if (flags & POINTER)
866 * (just after `['). Return a pointer to the character past the
vfwscanf.c 59 #define POINTER 0x00020 /* p: void * (as hex) */
119 char *mbp; /* multibyte string pointer for %c %s %[ */
290 case 'p': /* pointer format is like hex */
291 flags |= POINTER | PFXOK;
658 if (flags & POINTER)
  /external/chromium_org/v8/src/
string-stream.h 73 FmtElm(void* value) : type_(POINTER) { // NOLINT
79 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
  /ndk/sources/android/support/src/stdio/
vfscanf.c 59 #define POINTER 0x00020 /* p: void * (as hex) */
277 case 'p': /* pointer format is like hex */
278 flags |= POINTER | PFXOK;
587 if (flags & POINTER)
745 * (just after `['). Return a pointer to the character past the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
271 POINTER(c_wchar).from_param = c_wchar_p.from_param
273 POINTER(c_char).from_param = c_char_p.from_param
316 def SetPointerType(pointer, cls):
319 if id(pointer) not in _pointer_type_cache:
321 pointer.set_type(cls)
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
271 POINTER(c_wchar).from_param = c_wchar_p.from_param
273 POINTER(c_char).from_param = c_char_p.from_param
316 def SetPointerType(pointer, cls):
319 if id(pointer) not in _pointer_type_cache:
321 pointer.set_type(cls)
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 2548 milliseconds