Searched defs:self (Results 76 - 100 of 228) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dcodecs.c751 static PyObject *strict_errors(PyObject *self, PyObject *exc) argument
758 static PyObject *ignore_errors(PyObject *self, PyObject *exc) argument
764 static PyObject *replace_errors(PyObject *self, PyObject *exc) argument
770 static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc) argument
776 static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_codecsmodule.c52 PyObject *codec_register(PyObject *self, PyObject *search_function) argument
67 PyObject *codec_lookup(PyObject *self, PyObject *args) argument
88 codec_encode(PyObject *self, PyObject *args) argument
122 codec_decode(PyObject *self, PyObject *args) argument
161 escape_decode(PyObject *self, argument
176 escape_encode(PyObject *self, argument
207 unicode_internal_decode(PyObject *self, argument
233 utf_7_decode(PyObject *self, argument
256 utf_8_decode(PyObject *self, argument
279 utf_16_decode(PyObject *self, argument
302 utf_16_le_decode(PyObject *self, PyObject *args) argument
326 utf_16_be_decode(PyObject *self, PyObject *args) argument
358 utf_16_ex_decode(PyObject *self, PyObject *args) argument
383 utf_32_decode(PyObject *self, PyObject *args) argument
406 utf_32_le_decode(PyObject *self, PyObject *args) argument
429 utf_32_be_decode(PyObject *self, PyObject *args) argument
460 utf_32_ex_decode(PyObject *self, PyObject *args) argument
485 unicode_escape_decode(PyObject *self, PyObject *args) argument
502 raw_unicode_escape_decode(PyObject *self, PyObject *args) argument
519 latin_1_decode(PyObject *self, PyObject *args) argument
536 ascii_decode(PyObject *self, PyObject *args) argument
553 charmap_decode(PyObject *self, PyObject *args) argument
575 mbcs_decode(PyObject *self, PyObject *args) argument
602 readbuffer_encode(PyObject *self, PyObject *args) argument
618 charbuffer_encode(PyObject *self, PyObject *args) argument
634 unicode_internal_encode(PyObject *self, PyObject *args) argument
661 utf_7_encode(PyObject *self, PyObject *args) argument
685 utf_8_encode(PyObject *self, PyObject *args) argument
714 utf_16_encode(PyObject *self, PyObject *args) argument
738 utf_16_le_encode(PyObject *self, PyObject *args) argument
761 utf_16_be_encode(PyObject *self, PyObject *args) argument
791 utf_32_encode(PyObject *self, PyObject *args) argument
815 utf_32_le_encode(PyObject *self, PyObject *args) argument
838 utf_32_be_encode(PyObject *self, PyObject *args) argument
861 unicode_escape_encode(PyObject *self, PyObject *args) argument
882 raw_unicode_escape_encode(PyObject *self, PyObject *args) argument
904 latin_1_encode(PyObject *self, PyObject *args) argument
927 ascii_encode(PyObject *self, PyObject *args) argument
950 charmap_encode(PyObject *self, PyObject *args) argument
977 charmap_build(PyObject *self, PyObject *args) argument
988 mbcs_encode(PyObject *self, PyObject *args) argument
1024 register_error(PyObject *self, PyObject *args) argument
1043 lookup_error(PyObject *self, PyObject *args) argument
[all...]
H A D_hashopenssl.c102 EVP_hash(EVPobject *self, const void *vp, Py_ssize_t len) argument
112 EVP_DigestUpdate(&self->ctx, (const void*)cp, process);
121 EVP_dealloc(EVPobject *self) argument
124 if (self->lock != NULL)
125 PyThread_free_lock(self->lock);
127 EVP_MD_CTX_cleanup(&self->ctx);
128 Py_XDECREF(self->name);
129 PyObject_Del(self);
132 static void locked_EVP_MD_CTX_copy(EVP_MD_CTX *new_ctx_p, EVPobject *self) argument
134 ENTER_HASHLIB(self);
145 EVP_copy(EVPobject *self, PyObject *unused) argument
160 EVP_digest(EVPobject *self, PyObject *unused) argument
180 EVP_hexdigest(EVPobject *self, PyObject *unused) argument
224 EVP_update(EVPobject *self, PyObject *args) argument
264 EVP_get_block_size(EVPobject *self, void *closure) argument
272 EVP_get_digest_size(EVPobject *self, void *closure) argument
304 EVP_repr(PyObject *self) argument
314 EVP_tp_init(EVPobject *self, PyObject *args, PyObject *kwds) argument
425 EVPobject *self; local
465 EVP_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
[all...]
H A DcStringIO.c79 IO__opencheck(IOobject *self) { argument
80 if (!self->buf) {
89 IO_get_closed(IOobject *self, void *closure) argument
93 if (self->buf == NULL)
105 IO_flush(IOobject *self, PyObject *unused) { argument
107 if (!IO__opencheck(self)) return NULL;
120 IO_cgetval(PyObject *self) { argument
121 if (!IO__opencheck(IOOOBJECT(self))) return NULL;
122 assert(IOOOBJECT(self)->pos >= 0);
123 return PyString_FromStringAndSize(((IOobject*)self)
128 IO_getval(IOobject *self, PyObject *args) argument
148 IO_isatty(IOobject *self, PyObject *unused) argument
158 IO_cread(PyObject *self, char **output, Py_ssize_t n) argument
176 IO_read(IOobject *self, PyObject *args) argument
190 IO_creadline(PyObject *self, char **output) argument
214 IO_readline(IOobject *self, PyObject *args) argument
234 IO_readlines(IOobject *self, PyObject *args) argument
273 IO_reset(IOobject *self, PyObject *unused) argument
286 IO_tell(IOobject *self, PyObject *unused) argument
298 IO_truncate(IOobject *self, PyObject *args) argument
323 IO_iternext(Iobject *self) argument
347 IO_seek(Iobject *self, PyObject *args) argument
376 O_cwrite(PyObject *self, const char *c, Py_ssize_t l) argument
428 O_write(Oobject *self, PyObject *args) argument
443 O_close(Oobject *self, PyObject *unused) argument
459 O_writelines(Oobject *self, PyObject *args) argument
517 O_dealloc(Oobject *self) argument
561 Oobject *self; local
586 I_close(Iobject *self, PyObject *unused) argument
615 I_dealloc(Iobject *self) argument
660 Iobject *self; local
689 IO_StringIO(PyObject *self, PyObject *args) argument
[all...]
H A Dimageop.c116 imageop_crop(PyObject *self, PyObject *args) argument
171 imageop_scale(PyObject *self, PyObject *args) argument
219 imageop_tovideo(PyObject *self, PyObject *args) argument
271 imageop_grey2mono(PyObject *self, PyObject *args) argument
309 imageop_grey2grey4(PyObject *self, PyObject *args) argument
346 imageop_grey2grey2(PyObject *self, PyObject *args) argument
383 imageop_dither2mono(PyObject *self, PyObject *args) argument
425 imageop_dither2grey2(PyObject *self, PyObject *args) argument
466 imageop_mono2grey(PyObject *self, PyObject *args) argument
505 imageop_grey22grey(PyObject *self, PyObjec argument
544 imageop_grey42grey(PyObject *self, PyObject *args) argument
581 imageop_rgb2rgb8(PyObject *self, PyObject *args) argument
624 imageop_rgb82rgb(PyObject *self, PyObject *args) argument
674 imageop_rgb2grey(PyObject *self, PyObject *args) argument
719 imageop_grey2rgb(PyObject *self, PyObject *args) argument
[all...]
H A Dsha256module.c408 SHA256_copy(SHAobject *self, PyObject *unused) argument
412 if (Py_TYPE(self) == &SHA256type) {
420 SHAcopy(self, newobj);
428 SHA256_digest(SHAobject *self, PyObject *unused) argument
433 SHAcopy(self, &temp);
435 return PyString_FromStringAndSize((const char *)digest, self->digestsize);
442 SHA256_hexdigest(SHAobject *self, PyObject *unused) argument
451 SHAcopy(self, &temp);
455 retval = PyString_FromStringAndSize(NULL, self->digestsize * 2);
465 for(i=j=0; i<self
481 SHA256_update(SHAobject *self, PyObject *args) argument
503 SHA256_get_block_size(PyObject *self, void *closure) argument
509 SHA256_get_name(PyObject *self, void *closure) argument
612 SHA256_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
647 SHA224_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
[all...]
H A Dsha512module.c474 SHA512_copy(SHAobject *self, PyObject *unused) argument
478 if (((PyObject*)self)->ob_type == &SHA512type) {
486 SHAcopy(self, newobj);
494 SHA512_digest(SHAobject *self, PyObject *unused) argument
499 SHAcopy(self, &temp);
501 return PyString_FromStringAndSize((const char *)digest, self->digestsize);
508 SHA512_hexdigest(SHAobject *self, PyObject *unused) argument
517 SHAcopy(self, &temp);
521 retval = PyString_FromStringAndSize(NULL, self->digestsize * 2);
531 for (i=j=0; i<self
547 SHA512_update(SHAobject *self, PyObject *args) argument
569 SHA512_get_block_size(PyObject *self, void *closure) argument
575 SHA512_get_name(PyObject *self, void *closure) argument
678 SHA512_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
713 SHA384_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
[all...]
H A Dsignalmodule.c150 signal_default_int_handler(PyObject *self, PyObject *args) argument
226 signal_alarm(PyObject *self, PyObject *args) argument
243 signal_pause(PyObject *self) argument
266 signal_signal(PyObject *self, PyObject *args) argument
340 signal_getsignal(PyObject *self, PyObject *args) argument
373 signal_siginterrupt(PyObject *self, PyObject *args) argument
397 signal_set_wakeup_fd(PyObject *self, PyObject *args) argument
442 signal_setitimer(PyObject *self, PyObject *args) argument
477 signal_getitimer(PyObject *self, PyObject *args) argument
H A Dthreadmodule.c29 lock_dealloc(lockobject *self) argument
31 if (self->in_weakreflist != NULL)
32 PyObject_ClearWeakRefs((PyObject *) self);
33 if (self->lock_lock != NULL) {
35 PyThread_acquire_lock(self->lock_lock, 0);
36 PyThread_release_lock(self->lock_lock);
38 PyThread_free_lock(self->lock_lock);
40 PyObject_Del(self);
44 lock_PyThread_acquire_lock(lockobject *self, PyObject *args) argument
52 i = PyThread_acquire_lock(self
70 lock_PyThread_release_lock(lockobject *self) argument
93 lock_locked_lock(lockobject *self) argument
163 lockobject *self; local
227 localdummy_dealloc(localdummyobject *self) argument
282 _local_create_dummy(localobject *self) argument
330 localobject *self; local
381 local_traverse(localobject *self, visitproc visit, void *arg) argument
390 local_clear(localobject *self) argument
412 local_dealloc(localobject *self) argument
428 _ldict(localobject *self) argument
464 local_setattro(localobject *self, PyObject *name, PyObject *v) argument
533 local_getattro(localobject *self, PyObject *name) argument
569 localobject *self; local
645 thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs) argument
710 thread_PyThread_exit_thread(PyObject *self) argument
724 thread_PyThread_interrupt_main(PyObject * self) argument
741 thread_PyThread_allocate_lock(PyObject *self) argument
753 thread_get_ident(PyObject *self) argument
776 thread__count(PyObject *self) argument
794 thread_stack_size(PyObject *self, PyObject *args) argument
[all...]
H A Dtimemodule.c128 time_time(PyObject *self, PyObject *unused) argument
156 time_clock(PyObject *self, PyObject *unused) argument
165 time_clock(PyObject *self, PyObject *unused) argument
201 time_sleep(PyObject *self, PyObject *args) argument
317 time_gmtime(PyObject *self, PyObject *args) argument
333 time_localtime(PyObject *self, PyObject *args) argument
393 time_strftime(PyObject *self, PyObject *args) argument
541 time_strptime(PyObject *self, PyObject *args) argument
562 time_asctime(PyObject *self, PyObject *args) argument
592 time_ctime(PyObject *self, PyObjec argument
629 time_mktime(PyObject *self, PyObject *tup) argument
657 time_tzset(PyObject *self, PyObject *unused) argument
[all...]
H A Dzlibmodule.c108 compobject *self; local
109 self = PyObject_New(compobject, type);
110 if (self == NULL)
112 self->is_initialised = 0;
113 self->unused_data = PyString_FromString("");
114 if (self->unused_data == NULL) {
115 Py_DECREF(self);
118 self->unconsumed_tail = PyString_FromString("");
119 if (self->unconsumed_tail == NULL) {
120 Py_DECREF(self);
132 PyZlib_compress(PyObject *self, PyObject *args) argument
209 PyZlib_decompress(PyObject *self, PyObject *args) argument
305 compobject *self; local
345 compobject *self; local
378 Comp_dealloc(compobject *self) argument
388 Decomp_dealloc(compobject *self) argument
406 PyZlib_objcompress(compobject *self, PyObject *args) argument
476 PyZlib_objdecompress(compobject *self, PyObject *args) argument
598 PyZlib_flush(compobject *self, PyObject *args) argument
681 PyZlib_copy(compobject *self) argument
732 PyZlib_uncopy(compobject *self) argument
788 PyZlib_unflush(compobject *self, PyObject *args) argument
877 Comp_getattr(compobject *self, char *name) argument
886 Decomp_getattr(compobject *self, char *name) argument
913 PyZlib_adler32(PyObject *self, PyObject *args) argument
936 PyZlib_crc32(PyObject *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Dbytesio.c15 #define CHECK_CLOSED(self) \
16 if ((self)->buf == NULL) { \
26 get_line(bytesio *self, char **output) argument
32 assert(self->buf != NULL);
35 str_end = self->buf + self->string_size;
36 for (n = self->buf + self->pos;
45 len = n - (self->buf + self
59 resize_buffer(bytesio *self, size_t size) argument
111 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) argument
149 bytesio_get_closed(bytesio *self) argument
161 return_true(bytesio *self) argument
170 bytesio_flush(bytesio *self) argument
182 bytesio_getvalue(bytesio *self) argument
195 bytesio_isatty(bytesio *self) argument
205 bytesio_tell(bytesio *self) argument
218 bytesio_read(bytesio *self, PyObject *args) argument
267 bytesio_read1(bytesio *self, PyObject *n) argument
287 bytesio_readline(bytesio *self, PyObject *args) argument
332 bytesio_readlines(bytesio *self, PyObject *args) argument
391 bytesio_readinto(bytesio *self, PyObject *args) argument
426 bytesio_truncate(bytesio *self, PyObject *args) argument
467 bytesio_iternext(bytesio *self) argument
492 bytesio_seek(bytesio *self, PyObject *args) argument
551 bytesio_write(bytesio *self, PyObject *obj) argument
579 bytesio_writelines(bytesio *self, PyObject *v) argument
612 bytesio_close(bytesio *self) argument
637 bytesio_getstate(bytesio *self) argument
661 bytesio_setstate(bytesio *self, PyObject *state) argument
736 bytesio_dealloc(bytesio *self) argument
752 bytesio *self; local
772 bytesio_init(bytesio *self, PyObject *args, PyObject *kwds) argument
798 bytesio_traverse(bytesio *self, visitproc visit, void *arg) argument
805 bytesio_clear(bytesio *self) argument
[all...]
H A Diobase.c61 #define IS_CLOSED(self) \
62 PyObject_HasAttrString(self, "__IOBase_closed")
88 iobase_seek(PyObject *self, PyObject *args) argument
97 iobase_tell(PyObject *self, PyObject *args) argument
99 return PyObject_CallMethod(self, "seek", "ii", 0, 1);
109 iobase_truncate(PyObject *self, PyObject *args) argument
122 iobase_flush(PyObject *self, PyObject *args) argument
125 if (IS_CLOSED(self)) {
138 iobase_closed(PyObject *self) argument
144 res = PyObject_GetAttr(self, _PyIO_str_close
153 iobase_closed_get(PyObject *self, void *context) argument
159 _PyIOBase_check_closed(PyObject *self, PyObject *args) argument
176 iobase_close(PyObject *self, PyObject *args) argument
195 _PyIOBase_finalize(PyObject *self) argument
259 iobase_traverse(iobase *self, visitproc visit, void *arg) argument
266 iobase_clear(iobase *self) argument
277 iobase_dealloc(iobase *self) argument
307 iobase_seekable(PyObject *self, PyObject *args) argument
313 _PyIOBase_check_seekable(PyObject *self, PyObject *args) argument
335 iobase_readable(PyObject *self, PyObject *args) argument
342 _PyIOBase_check_readable(PyObject *self, PyObject *args) argument
364 iobase_writable(PyObject *self, PyObject *args) argument
371 _PyIOBase_check_writable(PyObject *self, PyObject *args) argument
390 iobase_enter(PyObject *self, PyObject *args) argument
400 iobase_exit(PyObject *self, PyObject *args) argument
415 iobase_fileno(PyObject *self, PyObject *args) argument
426 iobase_isatty(PyObject *self, PyObject *args) argument
445 iobase_readline(PyObject *self, PyObject *args) argument
540 iobase_iter(PyObject *self) argument
550 iobase_iternext(PyObject *self) argument
573 iobase_readlines(PyObject *self, PyObject *args) argument
625 iobase_writelines(PyObject *self, PyObject *args) argument
760 rawiobase_read(PyObject *self, PyObject *args) argument
801 rawiobase_readall(PyObject *self, PyObject *args) argument
[all...]
H A Dstringio.c29 #define CHECK_INITIALIZED(self) \
30 if (self->ok <= 0) { \
36 #define CHECK_CLOSED(self) \
37 if (self->closed) { \
54 resize_buffer(stringio *self, size_t size) argument
58 size_t alloc = self->buf_size;
61 assert(self->buf != NULL);
89 new_buf = (Py_UNICODE *)PyMem_Realloc(self->buf,
95 self->buf_size = alloc;
96 self
109 write_str(stringio *self, PyObject *obj) argument
189 stringio_getvalue(stringio *self) argument
200 stringio_tell(stringio *self) argument
214 stringio_read(stringio *self, PyObject *args) argument
255 _stringio_readline(stringio *self, Py_ssize_t limit) argument
289 stringio_readline(stringio *self, PyObject *args) argument
313 stringio_iternext(stringio *self) argument
357 stringio_truncate(stringio *self, PyObject *args) argument
407 stringio_seek(stringio *self, PyObject *args) argument
461 stringio_write(stringio *self, PyObject *obj) argument
487 stringio_close(stringio *self) argument
500 stringio_traverse(stringio *self, visitproc visit, void *arg) argument
507 stringio_clear(stringio *self) argument
514 stringio_dealloc(stringio *self) argument
534 stringio *self; local
554 stringio_init(stringio *self, PyObject *args, PyObject *kwds) argument
636 stringio_seekable(stringio *self, PyObject *args) argument
643 stringio_readable(stringio *self, PyObject *args) argument
650 stringio_writable(stringio *self, PyObject *args) argument
669 stringio_getstate(stringio *self) argument
695 stringio_setstate(stringio *self, PyObject *state) argument
786 stringio_closed(stringio *self, void *context) argument
793 stringio_line_buffering(stringio *self, void *context) argument
801 stringio_newlines(stringio *self, void *context) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dcodeobject.c380 code_richcompare(PyObject *self, PyObject *other, int op) argument
387 !PyCode_Check(self) ||
401 co = (PyCodeObject *)self;
H A Dstructseq.c95 structseq_subscript(PyStructSequence *self, PyObject *item) argument
103 i += VISIBLE_SIZE(self);
105 if (i < 0 || i >= VISIBLE_SIZE(self)) {
110 Py_INCREF(self->ob_item[i]);
111 return self->ob_item[i];
118 VISIBLE_SIZE(self), &start, &stop,
129 PyObject *v = self->ob_item[cur];
371 structseq_reduce(PyStructSequence* self) argument
379 n_fields = REAL_SIZE(self);
380 n_visible_fields = VISIBLE_SIZE(self);
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dcodecs.c734 static PyObject *strict_errors(PyObject *self, PyObject *exc) argument
741 static PyObject *ignore_errors(PyObject *self, PyObject *exc) argument
747 static PyObject *replace_errors(PyObject *self, PyObject *exc) argument
753 static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc) argument
759 static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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.c62 _PyFileIO_closed(PyObject *self) argument
64 return ((fileio *)self)->fd < 0;
74 internal_close(fileio *self) argument
78 if (self->fd >= 0) {
79 int fd = self->fd;
80 self->fd = -1;
102 fileio_close(fileio *self) argument
106 "close", "O", self);
107 if (!self->closefd) {
108 self
119 fileio *self; local
142 dircheck(fileio* self, PyObject *nameobj) argument
179 fileio *self = (fileio *) oself; local
380 fileio_traverse(fileio *self, visitproc visit, void *arg) argument
387 fileio_clear(fileio *self) argument
394 fileio_dealloc(fileio *self) argument
420 fileio_fileno(fileio *self) argument
428 fileio_readable(fileio *self) argument
436 fileio_writable(fileio *self) argument
444 fileio_seekable(fileio *self) argument
462 fileio_readinto(fileio *self, PyObject *args) argument
501 new_buffersize(fileio *self, size_t currentsize) argument
526 fileio_readall(fileio *self) argument
603 fileio_read(fileio *self, PyObject *args) argument
660 fileio_write(fileio *self, PyObject *args) argument
760 fileio_seek(fileio *self, PyObject *args) argument
775 fileio_tell(fileio *self, PyObject *args) argument
785 fileio_truncate(fileio *self, PyObject *args) argument
887 mode_string(fileio *self) argument
906 fileio_repr(fileio *self) argument
936 fileio_isatty(fileio *self) argument
1052 get_closed(fileio *self, void *closure) argument
1058 get_closefd(fileio *self, void *closure) argument
1064 get_mode(fileio *self, void *closure) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dbinascii.c189 binascii_a2b_uu(PyObject *self, PyObject *args) argument
275 binascii_b2a_uu(PyObject *self, PyObject *args) argument
360 binascii_a2b_base64(PyObject *self, PyObject *args) argument
467 binascii_b2a_base64(PyObject *self, PyObject *args) argument
532 binascii_a2b_hqx(PyObject *self, PyObject *args) argument
615 binascii_rlecode_hqx(PyObject *self, PyObject *args) argument
677 binascii_b2a_hqx(PyObject *self, PyObject *args) argument
732 binascii_rledecode_hqx(PyObject *self, PyObject *args) argument
848 binascii_crc_hqx(PyObject *self, PyObject *args) argument
874 binascii_crc32(PyObject *self, PyObjec argument
1014 binascii_crc32(PyObject *self, PyObject *args) argument
1040 binascii_hexlify(PyObject *self, PyObject *args) argument
1103 binascii_unhexlify(PyObject *self, PyObject *args) argument
1179 binascii_a2b_qp(PyObject *self, PyObject *args, PyObject *kwargs) argument
1285 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
1034 cmath_isnan(PyObject *self, PyObject *args) argument
1047 cmath_isinf(PyObject *self, PyObject *args) argument
H A Doperator.c301 compare_digest(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 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
446 sha_update(self, buf,
465 SHA_get_block_size(PyObject *self, void *closure) argument
471 SHA_get_digest_size(PyObject *self, voi argument
477 SHA_get_name(PyObject *self, void *closure) argument
547 SHA_new(PyObject *self, PyObject *args, PyObject *kwdict) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
H A Dcjkcodecs.h258 getcodec(PyObject *self, PyObject *encoding) argument

Completed in 384 milliseconds

12345678910