Searched defs:self (Results 101 - 125 of 228) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dstropmodule.c97 strop_splitfields(PyObject *self, PyObject *args) argument
167 strop_joinfields(PyObject *self, PyObject *args) argument
304 strop_find(PyObject *self, PyObject *args) argument
347 strop_rfind(PyObject *self, PyObject *args) argument
421 strop_strip(PyObject *self, PyObject *args) argument
434 strop_lstrip(PyObject *self, PyObject *args) argument
447 strop_rstrip(PyObject *self, PyObject *args) argument
460 strop_lower(PyObject *self, PyObject *args) argument
499 strop_upper(PyObject *self, PyObject *args) argument
539 strop_capitalize(PyObject *self, PyObjec argument
590 strop_expandtabs(PyObject *self, PyObject *args) argument
674 strop_count(PyObject *self, PyObject *args) argument
718 strop_swapcase(PyObject *self, PyObject *args) argument
767 strop_atoi(PyObject *self, PyObject *args) argument
823 strop_atol(PyObject *self, PyObject *args) argument
869 strop_atof(PyObject *self, PyObject *args) argument
910 strop_maketrans(PyObject *self, PyObject *args) argument
947 strop_translate(PyObject *self, PyObject *args) argument
1163 strop_replace(PyObject *self, PyObject *args) argument
[all...]
H A D_collectionsmodule.c1390 if self.default_factory is None: raise KeyError((key,))\n\
1391 self[key] = value = self.default_factory()\n\
1569 defdict_traverse(PyObject *self, visitproc visit, void *arg) argument
1571 Py_VISIT(((defdictobject *)self)->default_factory);
1572 return PyDict_Type.tp_traverse(self, visit, arg);
1583 defdict_init(PyObject *self, PyObject *args, PyObject *kwds) argument
1585 defdictobject *dd = (defdictobject *)self;
1608 result = PyDict_Type.tp_init(self, newargs, kwds);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dbufferobject.c26 get_buf(PyBufferObject *self, void **ptr, Py_ssize_t *size, argument
29 if (self->b_base == NULL) {
31 *ptr = self->b_ptr;
32 *size = self->b_size;
37 PyBufferProcs *bp = self->b_base->ob_type->tp_as_buffer;
38 if ((*bp->bf_getsegcount)(self->b_base, NULL) != 1) {
44 ((buffer_type == ANY_BUFFER) && self->b_readonly))
50 if (!PyType_HasFeature(self->ob_type,
79 if ((count = (*proc)(self->b_base, 0, ptr)) < 0)
82 if (self
260 buffer_dealloc(PyBufferObject *self) argument
267 buffer_compare(PyBufferObject *self, PyBufferObject *other) argument
287 buffer_repr(PyBufferObject *self) argument
308 buffer_hash(PyBufferObject *self) argument
358 buffer_str(PyBufferObject *self) argument
370 buffer_length(PyBufferObject *self) argument
380 buffer_concat(PyBufferObject *self, PyObject *other) argument
432 buffer_repeat(PyBufferObject *self, Py_ssize_t count) argument
465 buffer_item(PyBufferObject *self, Py_ssize_t idx) argument
479 buffer_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right) argument
498 buffer_subscript(PyBufferObject *self, PyObject *item) argument
553 buffer_ass_item(PyBufferObject *self, Py_ssize_t idx, PyObject *other) argument
604 buffer_ass_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right, PyObject *other) argument
662 buffer_ass_subscript(PyBufferObject *self, PyObject *item, PyObject *value) argument
743 buffer_getreadbuf(PyBufferObject *self, Py_ssize_t idx, void **pp) argument
757 buffer_getwritebuf(PyBufferObject *self, Py_ssize_t idx, void **pp) argument
778 buffer_getsegcount(PyBufferObject *self, Py_ssize_t *lenp) argument
790 buffer_getcharbuf(PyBufferObject *self, Py_ssize_t idx, const char **pp) argument
805 buffer_getbuffer(PyBufferObject *self, Py_buffer *buf, int flags) argument
[all...]
H A Dfuncobject.c637 cm_descr_get(PyObject *self, PyObject *obj, PyObject *type) argument
639 classmethod *cm = (classmethod *)self;
653 cm_init(PyObject *self, PyObject *args, PyObject *kwds) argument
655 classmethod *cm = (classmethod *)self;
792 sm_descr_get(PyObject *self, PyObject *obj, PyObject *type) argument
794 staticmethod *sm = (staticmethod *)self;
806 sm_init(PyObject *self, PyObject *args, PyObject *kwds) argument
808 staticmethod *sm = (staticmethod *)self;
H A Dmemoryobject.c34 memory_getbuf(PyMemoryViewObject *self, Py_buffer *view, int flags) argument
37 if (self->view.obj != NULL)
38 res = PyObject_GetBuffer(self->view.obj, view, flags);
40 dup_buffer(view, &self->view);
45 memory_releasebuf(PyMemoryViewObject *self, Py_buffer *view) argument
328 memory_format_get(PyMemoryViewObject *self) argument
330 return PyString_FromString(self->view.format);
334 memory_itemsize_get(PyMemoryViewObject *self) argument
336 return PyLong_FromSsize_t(self->view.itemsize);
364 memory_shape_get(PyMemoryViewObject *self) argument
370 memory_strides_get(PyMemoryViewObject *self) argument
376 memory_suboffsets_get(PyMemoryViewObject *self) argument
382 memory_readonly_get(PyMemoryViewObject *self) argument
388 memory_ndim_get(PyMemoryViewObject *self) argument
406 memory_tobytes(PyMemoryViewObject *self, PyObject *noargs) argument
465 memory_dealloc(PyMemoryViewObject *self) argument
496 memory_repr(PyMemoryViewObject *self) argument
503 memory_length(PyMemoryViewObject *self) argument
512 memory_item(PyMemoryViewObject *self, Py_ssize_t result) argument
560 memory_subscript(PyMemoryViewObject *self, PyObject *key) argument
627 memory_ass_sub(PyMemoryViewObject *self, PyObject *key, PyObject *value) argument
759 memory_traverse(PyMemoryViewObject *self, visitproc visit, void *arg) argument
769 memory_clear(PyMemoryViewObject *self) argument
[all...]
H A Dweakrefobject.c23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback) argument
25 self->hash = -1;
26 self->wr_object = ob;
28 self->wr_callback = callback;
51 clear_weakref(PyWeakReference *self) argument
53 PyObject *callback = self->wr_callback;
55 if (self->wr_object != Py_None) {
56 PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
58 if (*list == self)
59 /* If 'self' i
89 _PyWeakref_ClearRef(PyWeakReference *self) argument
103 weakref_dealloc(PyObject *self) argument
112 gc_traverse(PyWeakReference *self, visitproc visit, void *arg) argument
120 gc_clear(PyWeakReference *self) argument
128 weakref_call(PyWeakReference *self, PyObject *args, PyObject *kw) argument
142 weakref_hash(PyWeakReference *self) argument
156 weakref_repr(PyWeakReference *self) argument
195 weakref_richcompare(PyWeakReference* self, PyWeakReference* other, int op) argument
281 PyWeakReference *self = NULL; local
333 weakref___init__(PyObject *self, PyObject *args, PyObject *kwargs) argument
536 proxy_dealloc(PyWeakReference *self) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A D_warnings.c606 warnings_warn(PyObject *self, PyObject *args, PyObject *kwds) argument
623 warnings_warn_explicit(PyObject *self, PyObject *args, PyObject *kwds) argument
H A Dgetargs.c146 cleanup_ptr(PyObject *self) argument
148 void *ptr = PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_PTR);
155 cleanup_buffer(PyObject *self) argument
157 Py_buffer *ptr = (Py_buffer *)PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_BUFFER);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A D_iomodule.c99 blockingioerror_init(PyBlockingIOErrorObject *self, PyObject *args,
108 self->written = 0;
118 (PyObject *)self, baseargs, kwds) == -1) {
124 self->written = written;
291 io_open(PyObject *self, PyObject *args, PyObject *kwds)
97 blockingioerror_init(PyBlockingIOErrorObject *self, PyObject *args, PyObject *kwds) argument
288 io_open(PyObject *self, PyObject *args, PyObject *kwds) argument
H A Dfileio.c67 _PyFileIO_closed(PyObject *self) argument
69 return ((fileio *)self)->fd < 0;
79 internal_close(fileio *self) argument
83 if (self->fd >= 0) {
84 int fd = self->fd;
85 self->fd = -1;
107 fileio_close(fileio *self) argument
109 if (!self->closefd) {
110 self->fd = -1;
113 errno = internal_close(self);
124 fileio *self; local
146 dircheck(fileio* self, const char *name) argument
190 fileio *self = (fileio *) oself; local
392 fileio_traverse(fileio *self, visitproc visit, void *arg) argument
399 fileio_clear(fileio *self) argument
406 fileio_dealloc(fileio *self) argument
432 fileio_fileno(fileio *self) argument
440 fileio_readable(fileio *self) argument
448 fileio_writable(fileio *self) argument
456 fileio_seekable(fileio *self) argument
474 fileio_readinto(fileio *self, PyObject *args) argument
506 new_buffersize(fileio *self, size_t currentsize) argument
536 fileio_readall(fileio *self) argument
604 fileio_read(fileio *self, PyObject *args) argument
655 fileio_write(fileio *self, PyObject *args) argument
748 fileio_seek(fileio *self, PyObject *args) argument
763 fileio_tell(fileio *self, PyObject *args) argument
773 fileio_truncate(fileio *self, PyObject *args) argument
875 mode_string(fileio *self) argument
888 fileio_repr(fileio *self) argument
918 fileio_isatty(fileio *self) argument
1029 get_closed(fileio *self, void *closure) argument
1035 get_closefd(fileio *self, void *closure) argument
1041 get_mode(fileio *self, void *closure) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dcursor.c37 PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self);
79 static int pysqlite_cursor_init(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs) argument
89 self->connection = connection;
90 self->statement = NULL;
91 self->next_row = NULL;
92 self->in_weakreflist = NULL;
94 self->row_cast_map = PyList_New(0);
95 if (!self->row_cast_map) {
100 self->description = Py_None;
103 self
127 pysqlite_cursor_dealloc(pysqlite_Cursor* self) argument
167 pysqlite_build_row_cast_map(pysqlite_Cursor* self) argument
303 _pysqlite_fetch_one_row(pysqlite_Cursor* self) argument
449 _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* args) argument
780 pysqlite_cursor_execute(pysqlite_Cursor* self, PyObject* args) argument
785 pysqlite_cursor_executemany(pysqlite_Cursor* self, PyObject* args) argument
790 pysqlite_cursor_executescript(pysqlite_Cursor* self, PyObject* args) argument
878 pysqlite_cursor_getiter(pysqlite_Cursor *self) argument
884 pysqlite_cursor_iternext(pysqlite_Cursor *self) argument
935 pysqlite_cursor_fetchone(pysqlite_Cursor* self, PyObject* args) argument
948 pysqlite_cursor_fetchmany(pysqlite_Cursor* self, PyObject* args, PyObject* kwargs) argument
991 pysqlite_cursor_fetchall(pysqlite_Cursor* self, PyObject* args) argument
1020 pysqlite_noop(pysqlite_Connection* self, PyObject* args) argument
1027 pysqlite_cursor_close(pysqlite_Cursor* self, PyObject* args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dbinascii.c189 binascii_a2b_uu(PyObject *self, PyObject *args) argument
275 binascii_b2a_uu(PyObject *self, PyObject *args) argument
362 binascii_a2b_base64(PyObject *self, PyObject *args) argument
471 binascii_b2a_base64(PyObject *self, PyObject *args) argument
538 binascii_a2b_hqx(PyObject *self, PyObject *args) argument
624 binascii_rlecode_hqx(PyObject *self, PyObject *args) argument
688 binascii_b2a_hqx(PyObject *self, PyObject *args) argument
745 binascii_rledecode_hqx(PyObject *self, PyObject *args) argument
863 binascii_crc_hqx(PyObject *self, PyObject *args) argument
889 binascii_crc32(PyObject *self, PyObjec argument
1029 binascii_crc32(PyObject *self, PyObject *args) argument
1055 binascii_hexlify(PyObject *self, PyObject *args) argument
1118 binascii_unhexlify(PyObject *self, PyObject *args) argument
1194 binascii_a2b_qp(PyObject *self, PyObject *args, PyObject *kwargs) argument
1300 binascii_b2a_qp(PyObject *self, PyObject *args, PyObject *kwargs) argument
[all...]
H A Dcmathmodule.c832 cmath_log(PyObject *self, PyObject *args) argument
896 static PyObject * stubname(PyObject *self, PyObject *args) { \
917 cmath_phase(PyObject *self, PyObject *args) argument
938 cmath_polar(PyObject *self, PyObject *args) argument
973 cmath_rect(PyObject *self, PyObject *args) argument
1027 cmath_isnan(PyObject *self, PyObject *args) argument
1040 cmath_isinf(PyObject *self, PyObject *args) argument
H A Dpyexpat.c88 typedef void (*xmlhandlersetter)(XML_Parser self, void *meth);
121 set_error(xmlparseobject *self, enum XML_Error code) argument
125 XML_Parser parser = self->itself;
145 have_handler(xmlparseobject *self, int type) argument
147 PyObject *handler = self->handlers[type];
226 static void clear_handlers(xmlparseobject *self, int initial);
254 flag_error(xmlparseobject *self) argument
256 clear_handlers(self, 0);
257 XML_SetExternalEntityRefHandler(self->itself,
337 xmlparseobject *self)
336 call_with_frame(PyCodeObject *c, PyObject* func, PyObject* args, xmlparseobject *self) argument
[all...]
H A Dreadline.c75 parse_and_bind(PyObject *self, PyObject *args) argument
99 read_init_file(PyObject *self, PyObject *args) argument
119 read_history_file(PyObject *self, PyObject *args) argument
140 write_history_file(PyObject *self, PyObject *args) argument
162 set_history_length(PyObject *self, PyObject *args) argument
181 get_history_length(PyObject *self, PyObject *noarg) argument
233 set_completion_display_matches_hook(PyObject *self, PyObject *args) argument
260 set_startup_hook(PyObject *self, PyObject *args) argument
277 set_pre_input_hook(PyObject *self, PyObject *args) argument
302 get_completion_type(PyObject *self, PyObjec argument
315 get_begidx(PyObject *self, PyObject *noarg) argument
329 get_endidx(PyObject *self, PyObject *noarg) argument
343 set_completer_delims(PyObject *self, PyObject *args) argument
392 py_remove_history(PyObject *self, PyObject *args) argument
421 py_replace_history(PyObject *self, PyObject *args) argument
455 py_add_history(PyObject *self, PyObject *args) argument
474 get_completer_delims(PyObject *self, PyObject *noarg) argument
487 set_completer(PyObject *self, PyObject *args) argument
501 get_completer(PyObject *self, PyObject *noargs) argument
537 get_history_item(PyObject *self, PyObject *args) argument
580 get_current_history_length(PyObject *self, PyObject *noarg) argument
593 get_line_buffer(PyObject *self, PyObject *noarg) argument
608 py_clear_history(PyObject *self, PyObject *noarg) argument
623 insert_text(PyObject *self, PyObject *args) argument
640 redisplay(PyObject *self, PyObject *noarg) argument
[all...]
H A Dshamodule.c361 SHA_copy(SHAobject *self, PyObject *unused) argument
368 SHAcopy(self, newobj);
376 SHA_digest(SHAobject *self, PyObject *unused) argument
381 SHAcopy(self, &temp);
390 SHA_hexdigest(SHAobject *self, PyObject *unused) argument
399 SHAcopy(self, &temp);
429 SHA_update(SHAobject *self, PyObject *args) argument
436 sha_update(self, (unsigned char*)view.buf,
452 SHA_get_block_size(PyObject *self, void *closure) argument
458 SHA_get_digest_size(PyObject *self, voi argument
464 SHA_get_name(PyObject *self, void *closure) argument
534 SHA_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
[all...]
H A Dstropmodule.c97 strop_splitfields(PyObject *self, PyObject *args) argument
167 strop_joinfields(PyObject *self, PyObject *args) argument
304 strop_find(PyObject *self, PyObject *args) argument
347 strop_rfind(PyObject *self, PyObject *args) argument
421 strop_strip(PyObject *self, PyObject *args) argument
434 strop_lstrip(PyObject *self, PyObject *args) argument
447 strop_rstrip(PyObject *self, PyObject *args) argument
460 strop_lower(PyObject *self, PyObject *args) argument
499 strop_upper(PyObject *self, PyObject *args) argument
539 strop_capitalize(PyObject *self, PyObjec argument
590 strop_expandtabs(PyObject *self, PyObject *args) argument
672 strop_count(PyObject *self, PyObject *args) argument
716 strop_swapcase(PyObject *self, PyObject *args) argument
765 strop_atoi(PyObject *self, PyObject *args) argument
821 strop_atol(PyObject *self, PyObject *args) argument
867 strop_atof(PyObject *self, PyObject *args) argument
908 strop_maketrans(PyObject *self, PyObject *args) argument
945 strop_translate(PyObject *self, PyObject *args) argument
1161 strop_replace(PyObject *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
H A Dcjkcodecs.h258 getcodec(PyObject *self, PyObject *encoding) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dbufferobject.c26 get_buf(PyBufferObject *self, void **ptr, Py_ssize_t *size, argument
29 if (self->b_base == NULL) {
31 *ptr = self->b_ptr;
32 *size = self->b_size;
37 PyBufferProcs *bp = self->b_base->ob_type->tp_as_buffer;
38 if ((*bp->bf_getsegcount)(self->b_base, NULL) != 1) {
44 ((buffer_type == ANY_BUFFER) && self->b_readonly))
50 if (!PyType_HasFeature(self->ob_type,
79 if ((count = (*proc)(self->b_base, 0, ptr)) < 0)
82 if (self
260 buffer_dealloc(PyBufferObject *self) argument
267 buffer_compare(PyBufferObject *self, PyBufferObject *other) argument
287 buffer_repr(PyBufferObject *self) argument
308 buffer_hash(PyBufferObject *self) argument
348 buffer_str(PyBufferObject *self) argument
360 buffer_length(PyBufferObject *self) argument
370 buffer_concat(PyBufferObject *self, PyObject *other) argument
422 buffer_repeat(PyBufferObject *self, Py_ssize_t count) argument
455 buffer_item(PyBufferObject *self, Py_ssize_t idx) argument
469 buffer_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right) argument
488 buffer_subscript(PyBufferObject *self, PyObject *item) argument
543 buffer_ass_item(PyBufferObject *self, Py_ssize_t idx, PyObject *other) argument
594 buffer_ass_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right, PyObject *other) argument
652 buffer_ass_subscript(PyBufferObject *self, PyObject *item, PyObject *value) argument
733 buffer_getreadbuf(PyBufferObject *self, Py_ssize_t idx, void **pp) argument
747 buffer_getwritebuf(PyBufferObject *self, Py_ssize_t idx, void **pp) argument
768 buffer_getsegcount(PyBufferObject *self, Py_ssize_t *lenp) argument
780 buffer_getcharbuf(PyBufferObject *self, Py_ssize_t idx, const char **pp) argument
[all...]
H A Dfuncobject.c637 cm_descr_get(PyObject *self, PyObject *obj, PyObject *type) argument
639 classmethod *cm = (classmethod *)self;
653 cm_init(PyObject *self, PyObject *args, PyObject *kwds) argument
655 classmethod *cm = (classmethod *)self;
794 sm_descr_get(PyObject *self, PyObject *obj, PyObject *type) argument
796 staticmethod *sm = (staticmethod *)self;
808 sm_init(PyObject *self, PyObject *args, PyObject *kwds) argument
810 staticmethod *sm = (staticmethod *)self;
H A Dmemoryobject.c34 memory_getbuf(PyMemoryViewObject *self, Py_buffer *view, int flags) argument
37 if (self->view.obj != NULL)
38 res = PyObject_GetBuffer(self->view.obj, view, flags);
40 dup_buffer(view, &self->view);
45 memory_releasebuf(PyMemoryViewObject *self, Py_buffer *view) argument
328 memory_format_get(PyMemoryViewObject *self) argument
330 return PyString_FromString(self->view.format);
334 memory_itemsize_get(PyMemoryViewObject *self) argument
336 return PyLong_FromSsize_t(self->view.itemsize);
364 memory_shape_get(PyMemoryViewObject *self) argument
370 memory_strides_get(PyMemoryViewObject *self) argument
376 memory_suboffsets_get(PyMemoryViewObject *self) argument
382 memory_readonly_get(PyMemoryViewObject *self) argument
388 memory_ndim_get(PyMemoryViewObject *self) argument
406 memory_tobytes(PyMemoryViewObject *self, PyObject *noargs) argument
465 memory_dealloc(PyMemoryViewObject *self) argument
496 memory_repr(PyMemoryViewObject *self) argument
503 memory_length(PyMemoryViewObject *self) argument
512 memory_item(PyMemoryViewObject *self, Py_ssize_t result) argument
560 memory_subscript(PyMemoryViewObject *self, PyObject *key) argument
627 memory_ass_sub(PyMemoryViewObject *self, PyObject *key, PyObject *value) argument
759 memory_traverse(PyMemoryViewObject *self, visitproc visit, void *arg) argument
769 memory_clear(PyMemoryViewObject *self) argument
[all...]
H A Dweakrefobject.c23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback) argument
25 self->hash = -1;
26 self->wr_object = ob;
28 self->wr_callback = callback;
51 clear_weakref(PyWeakReference *self) argument
53 PyObject *callback = self->wr_callback;
55 if (PyWeakref_GET_OBJECT(self) != Py_None) {
57 PyWeakref_GET_OBJECT(self));
59 if (*list == self)
60 /* If 'self' i
90 _PyWeakref_ClearRef(PyWeakReference *self) argument
104 weakref_dealloc(PyObject *self) argument
113 gc_traverse(PyWeakReference *self, visitproc visit, void *arg) argument
121 gc_clear(PyWeakReference *self) argument
129 weakref_call(PyWeakReference *self, PyObject *args, PyObject *kw) argument
143 weakref_hash(PyWeakReference *self) argument
157 weakref_repr(PyWeakReference *self) argument
188 weakref_richcompare(PyWeakReference* self, PyWeakReference* other, int op) argument
270 PyWeakReference *self = NULL; local
322 weakref___init__(PyObject *self, PyObject *args, PyObject *kwargs) argument
525 proxy_dealloc(PyWeakReference *self) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A D_warnings.c605 warnings_warn(PyObject *self, PyObject *args, PyObject *kwds) argument
622 warnings_warn_explicit(PyObject *self, PyObject *args, PyObject *kwds) argument
H A Dgetargs.c146 cleanup_ptr(PyObject *self) argument
148 void *ptr = PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_PTR);
155 cleanup_buffer(PyObject *self) argument
157 Py_buffer *ptr = (Py_buffer *)PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_BUFFER);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dmarshal.c1254 marshal_dump(PyObject *self, PyObject *args) argument
1299 marshal_load(PyObject *self, PyObject *f) argument
1330 marshal_dumps(PyObject *self, PyObject *args) argument
1351 marshal_loads(PyObject *self, PyObject *args) argument

Completed in 532 milliseconds

12345678910