Searched refs:ACCEPT_STRING (Results 1 – 1 of 1) sorted by relevance
/external/python/cffi/c/ |
D | ffi_obj.c | 142 #define ACCEPT_STRING 1 macro 145 #define ACCEPT_ALL (ACCEPT_STRING | ACCEPT_CTYPE | ACCEPT_CDATA) 186 if ((accept & ACCEPT_STRING) && PyText_Check(arg)) { in _ffi_type() 241 const char *m1 = (accept & ACCEPT_STRING) ? "string" : ""; in _ffi_type() 304 PyObject *x = (PyObject *)_ffi_type(self, arg, ACCEPT_STRING|ACCEPT_CDATA); in ffi_typeof() 345 ct = _ffi_type(self, arg, ACCEPT_STRING|ACCEPT_CTYPE); in _ffi_new() 434 ct = _ffi_type(self, arg, ACCEPT_STRING|ACCEPT_CTYPE); in ffi_cast() 498 ct = _ffi_type(self, arg, ACCEPT_STRING|ACCEPT_CTYPE); in ffi_offsetof() 631 ct = _ffi_type(self, c_decl, ACCEPT_STRING|ACCEPT_CTYPE); in ffi_getctype() 718 ct = _ffi_type(self, cdecl1, ACCEPT_STRING|ACCEPT_CTYPE); in ffi_from_buffer() [all …]
|