Searched defs:args (Results 1 - 25 of 273) sorted by last modified time

1234567891011

/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
H A Dcompat.c103 getopt(int argc, char **argv, char *args) argument
106 size_t nlen = strlen(args);
114 if (args[n] == ':')
116 if (args[n] == cmd) {
118 if (args[n+1] == ':') {
260 dopr(char *buffer, size_t maxlen, const char *format, va_list args);
311 dopr(char *buffer, size_t maxlen, const char *format, va_list args) argument
365 min = va_arg (args, int);
385 max = va_arg (args, int);
423 value = va_arg(args, in
821 vsnprintf(char *str, size_t count, const char *fmt, va_list args) argument
[all...]
/device/linaro/bootloader/edk2/StdLib/PosixLib/Err/
H A Dwarn_err.c50 _Vdomessage(int doerrno, const char *fmt, va_list args) argument
54 vfprintf(stderr, fmt, args);
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FvbRuntimeDxe/
H A DFvbService.c792 VA_LIST args;
806 VA_START (args, This);
809 StartingLba = VA_ARG (args, EFI_LBA);
814 NumOfLba = VA_ARG (args, UINT32);
820 VA_END (args);
829 VA_END (args);
831 VA_START (args, This);
833 StartingLba = VA_ARG (args, EFI_LBA);
838 NumOfLba = VA_ARG (args, UINT32);
843 VA_END (args);
783 VA_LIST args; local
[all...]
/device/linaro/hikey/uefi-tools/
H A Dparse-platforms.py14 if args.platform:
16 value = config.get(args.platform, "EXTRA_FILES")
21 value = config.get(args.platform, "BUILD_ATF")
27 value = config.get(args.platform, "UEFI_BIN")
38 if args.platform:
39 if args.option:
41 value = config.get(args.platform, args.option)
59 args = parser.parse_args() variable
60 if args
[all...]
/device/linaro/bootloader/edk2/EmulatorPkg/FvbServicesRuntimeDxe/
H A DFWBlockService.c889 VA_LIST args; local
901 VA_START (args, This);
904 StartingLba = VA_ARG (args, EFI_LBA);
909 NumOfLba = VA_ARG (args, UINT32);
915 VA_END (args);
920 VA_END (args);
922 VA_START (args, This);
924 StartingLba = VA_ARG (args, EFI_LBA);
929 NumOfLba = VA_ARG (args, UINT32);
934 VA_END (args);
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregerror.c344 va_list args; local
346 va_init_list(args, fmt);
347 n = xvsnprintf((char* )buf, bufsize, (const char* )fmt, args);
348 va_end(args);
/device/linaro/bootloader/edk2/Nt32Pkg/FvbServicesRuntimeDxe/
H A DFWBlockService.c928 VA_LIST args; local
940 VA_START (args, This);
943 StartingLba = VA_ARG (args, EFI_LBA);
948 NumOfLba = VA_ARG (args, UINT32);
954 VA_END (args);
959 VA_END (args);
961 VA_START (args, This);
963 StartingLba = VA_ARG (args, EFI_LBA);
968 NumOfLba = VA_ARG (args, UINT32);
973 VA_END (args);
[all...]
/device/linaro/bootloader/edk2/OvmfPkg/EmuVariableFvbRuntimeDxe/
H A DFvb.c325 VA_LIST args; local
335 VA_START (args, This);
338 StartingLba = VA_ARG (args, EFI_LBA);
343 NumOfLba = VA_ARG (args, UINT32);
349 VA_END (args);
362 VA_END (args);
383 VA_START (args, This);
384 PlatformFvbBlocksErased (This, args);
385 VA_END (args);
/device/linaro/bootloader/edk2/OvmfPkg/QemuFlashFvbServicesRuntimeDxe/
H A DFwBlockService.c627 VA_LIST args; local
640 VA_START (args, This);
643 StartingLba = VA_ARG (args, EFI_LBA);
648 NumOfLba = VA_ARG (args, UINT32);
654 VA_END (args);
659 VA_END (args);
661 VA_START (args, This);
663 StartingLba = VA_ARG (args, EFI_LBA);
668 NumOfLba = VA_ARG (args, UINT32);
673 VA_END (args);
[all...]
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/SpiFvbServices/
H A DFwBlockService.c1196 VA_LIST args; local
1209 VA_START (args, This);
1212 StartingLba = VA_ARG (args, EFI_LBA);
1217 NumOfLba = VA_ARG (args, UINT32);
1223 VA_END (args);
1232 VA_END (args);
1234 VA_START (args, This);
1236 StartingLba = VA_ARG (args, EFI_LBA);
1241 NumOfLba = VA_ARG (args, UINT32);
1246 VA_END (args);
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlparser.c825 expdesc args; local
831 args.k = VVOID;
833 explist(ls, &args);
834 luaK_setmultret(fs, &args);
840 constructor(ls, &args);
844 codestring(ls, &args, ls->t.seminfo.ts);
854 if (hasmultret(args.k))
857 if (args.k != VVOID)
858 luaK_exp2nextreg(fs, &args); /* close last argument */
H A Dlua.c115 "usage: %s [options] [script [args]]\n"
176 lua_insert(L, base); /* put it under chunk and args */
348 /* indices of various argument indicators in array args */
357 static int collectargs (char **argv, int *args) { argument
369 args[has_E] = 1;
373 args[has_i] = 1; /* go through */
376 args[has_v] = 1;
379 args[has_e] = 1; /* go through */
442 int args[num_has]; local
443 args[has_
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c247 posix_1str(PyObject *args, char *format, int (*func)(const char*)) argument
251 if (!PyArg_ParseTuple(args, format,
265 posix_2str(PyObject *args, argument
271 if (!PyArg_ParseTuple(args, format,
415 statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
420 result = (PyStructSequence*)structseq_new(type, args, kwds);
452 stat_float_times(PyObject* self, PyObject *args) argument
456 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
559 posix_do_stat(PyObject *self, PyObject *args, argument
571 if (!PyArg_ParseTuple(args, forma
601 posix_access(PyObject *self, PyObject *args) argument
635 posix_chdir(PyObject *self, PyObject *args) argument
645 posix_chmod(PyObject *self, PyObject *args) argument
670 posix_fchmod(PyObject *self, PyObject *args) argument
691 posix_lchmod(PyObject *self, PyObject *args) argument
716 posix_chflags(PyObject *self, PyObject *args) argument
742 posix_lchflags(PyObject *self, PyObject *args) argument
767 posix_chroot(PyObject *self, PyObject *args) argument
810 posix_chown(PyObject *self, PyObject *args) argument
837 posix_fchown(PyObject *self, PyObject *args) argument
860 posix_lchown(PyObject *self, PyObject *args) argument
950 posix_listdir(PyObject *self, PyObject *args) argument
1066 posix__getfullpathname(PyObject *self, PyObject *args) argument
1123 posix_mkdir(PyObject *self, PyObject *args) argument
1155 posix_nice(PyObject *self, PyObject *args) argument
1190 posix_rename(PyObject *self, PyObject *args) argument
1201 posix_rmdir(PyObject *self, PyObject *args) argument
1212 posix_stat(PyObject *self, PyObject *args) argument
1224 posix_system(PyObject *self, PyObject *args) argument
1243 posix_umask(PyObject *self, PyObject *args) argument
1264 posix_unlink(PyObject *self, PyObject *args) argument
1314 posix_utime(PyObject *self, PyObject *args) argument
1399 posix__exit(PyObject *self, PyObject *args) argument
1429 posix_execv(PyObject *self, PyObject *args) argument
1501 posix_execve(PyObject *self, PyObject *args) argument
1646 posix_spawnv(PyObject *self, PyObject *args) argument
1734 posix_spawnve(PyObject *self, PyObject *args) argument
1889 posix_spawnvp(PyObject *self, PyObject *args) argument
1968 posix_spawnvpe(PyObject *self, PyObject *args) argument
2431 posix_initgroups(PyObject *self, PyObject *args) argument
2453 posix_getpgid(PyObject *self, PyObject *args) argument
2563 posix_kill(PyObject *self, PyObject *args) argument
2597 posix_killpg(PyObject *self, PyObject *args) argument
2625 posix_plock(PyObject *self, PyObject *args) argument
2648 char errormsg[256], args[1024]; local
2730 posix_popen(PyObject *self, PyObject *args) argument
2755 posix_popen(PyObject *self, PyObject *args) argument
2804 os2emx_popen2(PyObject *self, PyObject *args) argument
2836 os2emx_popen3(PyObject *self, PyObject *args) argument
2868 os2emx_popen4(PyObject *self, PyObject *args) argument
3366 posix_popen(PyObject *self, PyObject *args) argument
3407 win32_popen2(PyObject *self, PyObject *args) argument
3444 win32_popen3(PyObject *self, PyObject *args) argument
3481 win32_popen4(PyObject *self, PyObject *args) argument
4076 posix_popen(PyObject *self, PyObject *args) argument
4111 posix_setuid(PyObject *self, PyObject *args) argument
4136 posix_seteuid(PyObject *self, PyObject *args) argument
4162 posix_setegid(PyObject *self, PyObject *args) argument
4188 posix_setreuid(PyObject *self, PyObject *args) argument
4222 posix_setregid(PyObject *self, PyObject *args) argument
4256 posix_setgid(PyObject *self, PyObject *args) argument
4408 posix_wait3(PyObject *self, PyObject *args) argument
4433 posix_wait4(PyObject *self, PyObject *args) argument
4458 posix_waitpid(PyObject *self, PyObject *args) argument
4484 posix_waitpid(PyObject *self, PyObject *args) argument
4530 posix_lstat(PyObject *self, PyObject *args) argument
4546 posix_readlink(PyObject *self, PyObject *args) argument
4609 posix_symlink(PyObject *self, PyObject *args) argument
4677 posix_getsid(PyObject *self, PyObject *args) argument
4712 posix_setpgid(PyObject *self, PyObject *args) argument
4732 posix_tcgetpgrp(PyObject *self, PyObject *args) argument
4752 posix_tcsetpgrp(PyObject *self, PyObject *args) argument
4772 posix_open(PyObject *self, PyObject *args) argument
4799 posix_close(PyObject *self, PyObject *args) argument
4821 posix_closerange(PyObject *self, PyObject *args) argument
4840 posix_dup(PyObject *self, PyObject *args) argument
4861 posix_dup2(PyObject *self, PyObject *args) argument
4883 posix_lseek(PyObject *self, PyObject *args) argument
4929 posix_read(PyObject *self, PyObject *args) argument
4964 posix_write(PyObject *self, PyObject *args) argument
4991 posix_fstat(PyObject *self, PyObject *args) argument
5016 posix_fdopen(PyObject *self, PyObject *args) argument
5074 posix_isatty(PyObject *self, PyObject *args) argument
5137 posix_mkfifo(PyObject *self, PyObject *args) argument
5167 posix_mknod(PyObject *self, PyObject *args) argument
5191 posix_major(PyObject *self, PyObject *args) argument
5204 posix_minor(PyObject *self, PyObject *args) argument
5217 posix_makedev(PyObject *self, PyObject *args) argument
5233 posix_ftruncate(PyObject *self, PyObject *args) argument
5272 posix_putenv(PyObject *self, PyObject *args) argument
5340 posix_unsetenv(PyObject *self, PyObject *args) argument
5370 posix_strerror(PyObject *self, PyObject *args) argument
5394 posix_WCOREDUMP(PyObject *self, PyObject *args) argument
5413 posix_WIFCONTINUED(PyObject *self, PyObject *args) argument
5431 posix_WIFSTOPPED(PyObject *self, PyObject *args) argument
5449 posix_WIFSIGNALED(PyObject *self, PyObject *args) argument
5468 posix_WIFEXITED(PyObject *self, PyObject *args) argument
5486 posix_WEXITSTATUS(PyObject *self, PyObject *args) argument
5505 posix_WTERMSIG(PyObject *self, PyObject *args) argument
5524 posix_WSTOPSIG(PyObject *self, PyObject *args) argument
5591 posix_fstatvfs(PyObject *self, PyObject *args) argument
5617 posix_statvfs(PyObject *self, PyObject *args) argument
5643 posix_tempnam(PyObject *self, PyObject *args) argument
5858 posix_fpathconf(PyObject *self, PyObject *args) argument
5886 posix_pathconf(PyObject *self, PyObject *args) argument
6073 posix_confstr(PyObject *self, PyObject *args) argument
6617 posix_sysconf(PyObject *self, PyObject *args) argument
6733 posix_setresuid(PyObject *self, PyObject *args) argument
6751 posix_setresgid(PyObject *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
H A D_sre.c1656 sre_getlower(PyObject* self, PyObject* args) argument
1659 if (!PyArg_ParseTuple(args, "ii", &character, &flags))
1879 pattern_match(PatternObject* self, PyObject* args, PyObject* kw) argument
1888 if (!PyArg_ParseTupleAndKeywords(args, kw, "O|nn:match", kwlist,
1918 pattern_search(PatternObject* self, PyObject* args, PyObject* kw) argument
1927 if (!PyArg_ParseTupleAndKeywords(args, kw, "O|nn:search", kwlist,
1956 call(char* module, char* function, PyObject* args) argument
1963 if (!args)
1976 result = PyObject_CallObject(func, args);
1978 Py_DECREF(args);
2010 PyObject* args; local
2051 pattern_findall(PatternObject* self, PyObject* args, PyObject* kw) argument
2155 pattern_finditer(PatternObject* pattern, PyObject* args) argument
2178 pattern_split(PatternObject* self, PyObject* args, PyObject* kw) argument
2298 PyObject* args; local
2477 pattern_sub(PatternObject* self, PyObject* args, PyObject* kw) argument
2491 pattern_subn(PatternObject* self, PyObject* args, PyObject* kw) argument
2657 _compile(PyObject* self_, PyObject* args) argument
3272 match_group(MatchObject* self, PyObject* args) argument
3307 match_groups(MatchObject* self, PyObject* args, PyObject* kw) argument
3335 match_groupdict(MatchObject* self, PyObject* args, PyObject* kw) argument
3383 match_start(MatchObject* self, PyObject* args) argument
3406 match_end(MatchObject* self, PyObject* args) argument
3456 match_span(MatchObject* self, PyObject* args) argument
3842 pattern_scanner(PatternObject* pattern, PyObject* args) argument
[all...]
H A Dselectmodule.c195 select_select(PyObject *self, PyObject *args) argument
221 if (!PyArg_UnpackTuple(args, "select", 3, 4,
372 poll_register(pollObject *self, PyObject *args) argument
378 if (!PyArg_ParseTuple(args, "O|i:register", &o, &events)) {
415 poll_modify(pollObject *self, PyObject *args) argument
421 if (!PyArg_ParseTuple(args, "Oi:modify", &o, &events)) {
494 poll_poll(pollObject *self, PyObject *args) argument
500 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
773 pyepoll_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
778 if (!PyArg_ParseTupleAndKeywords(args, kwd
833 pyepoll_fromfd(PyObject *cls, PyObject *args) argument
898 pyepoll_register(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
923 pyepoll_modify(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
944 pyepoll_unregister(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
963 pyepoll_poll(pyEpoll_Object *self, PyObject *args, PyObject *kwds) argument
1244 kqueue_event_init(kqueue_event_Object *self, PyObject *args, PyObject *kwds) argument
1412 kqueue_queue_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1472 kqueue_queue_fromfd(PyObject *cls, PyObject *args) argument
1488 kqueue_queue_control(kqueue_queue_Object *self, PyObject *args) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c3992 long_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
3995 long_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
4002 return long_subtype_new(type, args, kwds); /* Wimp out */
4003 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oi:long", kwlist,
4048 long_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
4054 tmp = (PyLongObject *)long_new(&PyLong_Type, args, kwds);
4091 long__format__(PyObject *self, PyObject *args) argument
4095 if (!PyArg_ParseTuple(args, "O:__format__", &format_spec))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dimport.c2864 imp_find_module(PyObject *self, PyObject *args) argument
2868 if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path))
2874 imp_init_builtin(PyObject *self, PyObject *args) argument
2879 if (!PyArg_ParseTuple(args, "s:init_builtin", &name))
2894 imp_init_frozen(PyObject *self, PyObject *args) argument
2899 if (!PyArg_ParseTuple(args, "s:init_frozen", &name))
2914 imp_get_frozen_object(PyObject *self, PyObject *args) argument
2918 if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name))
2924 imp_is_builtin(PyObject *self, PyObject *args) argument
2927 if (!PyArg_ParseTuple(args, "
2933 imp_is_frozen(PyObject *self, PyObject *args) argument
2964 imp_load_compiled(PyObject *self, PyObject *args) argument
2986 imp_load_dynamic(PyObject *self, PyObject *args) argument
3008 imp_load_source(PyObject *self, PyObject *args) argument
3028 imp_load_module(PyObject *self, PyObject *args) argument
3069 imp_load_package(PyObject *self, PyObject *args) argument
3079 imp_new_module(PyObject *self, PyObject *args) argument
3190 NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) argument
3255 NullImporter_find_module(NullImporter *self, PyObject *args) argument
[all...]
H A Dmarshal.c1254 marshal_dump(PyObject *self, PyObject *args) argument
1260 if (!PyArg_ParseTuple(args, "OO|i:dump", &x, &f, &version))
1330 marshal_dumps(PyObject *self, PyObject *args) argument
1334 if (!PyArg_ParseTuple(args, "O|i:dumps", &x, &version))
1351 marshal_loads(PyObject *self, PyObject *args) argument
1357 if (!PyArg_ParseTuple(args, "s#:loads", &s, &n))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h74 arguments_ty args; member in struct:_stmt::__anon2603::__anon2604
213 arguments_ty args; member in struct:_expr::__anon2624::__anon2628
265 asdl_seq *args; member in struct:_expr::__anon2624::__anon2638
358 asdl_seq *args; member in struct:_arguments
384 stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
459 expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
487 expr_ty _Py_Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty
526 arguments_ty _Py_arguments(asdl_seq * args, identifier vararg, identifier
H A Dpyerrors.h12 PyObject *args; member in struct:__anon2705
19 PyObject *args; member in struct:__anon2706
33 PyObject *args; member in struct:__anon2707
46 PyObject *args; member in struct:__anon2708
54 PyObject *args; member in struct:__anon2709
65 PyObject *args; member in struct:__anon2710
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_bisectmodule.c44 bisect_right(PyObject *self, PyObject *args, PyObject *kw) argument
52 if (!PyArg_ParseTupleAndKeywords(args, kw, "OO|nn:bisect_right",
71 Optional args lo (default 0) and hi (default len(a)) bound the\n\
75 insort_right(PyObject *self, PyObject *args, PyObject *kw) argument
83 if (!PyArg_ParseTupleAndKeywords(args, kw, "OO|nn:insort_right",
111 Optional args lo (default 0) and hi (default len(a)) bound the\n\
150 bisect_left(PyObject *self, PyObject *args, PyObject *kw) argument
158 if (!PyArg_ParseTupleAndKeywords(args, kw, "OO|nn:bisect_left",
176 Optional args lo (default 0) and hi (default len(a)) bound the\n\
180 insort_left(PyObject *self, PyObject *args, PyObjec argument
[all...]
H A D_codecsmodule.c67 PyObject *codec_lookup(PyObject *self, PyObject *args) argument
71 if (!PyArg_ParseTuple(args, "s:lookup", &encoding))
88 codec_encode(PyObject *self, PyObject *args) argument
94 if (!PyArg_ParseTuple(args, "O|ss:encode", &v, &encoding, &errors))
122 codec_decode(PyObject *self, PyObject *args) argument
128 if (!PyArg_ParseTuple(args, "O|ss:decode", &v, &encoding, &errors))
162 PyObject *args)
168 if (!PyArg_ParseTuple(args, "s#|z:escape_decode",
177 PyObject *args)
184 if (!PyArg_ParseTuple(args, "
161 escape_decode(PyObject *self, PyObject *args) argument
176 escape_encode(PyObject *self, PyObject *args) argument
207 unicode_internal_decode(PyObject *self, PyObject *args) argument
233 utf_7_decode(PyObject *self, PyObject *args) argument
256 utf_8_decode(PyObject *self, PyObject *args) argument
279 utf_16_decode(PyObject *self, PyObject *args) 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_collectionsmodule.c129 deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
504 deque_rotate(dequeobject *deque, PyObject *args) argument
508 if (!PyArg_ParseTuple(args, "|n:rotate", &n))
1013 deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs) argument
1020 if (!PyArg_ParseTupleAndKeywords(args, kwdargs, "|OO:deque", kwlist, &iterable, &maxlenobj))
1441 - tuple of args for the factory function
1460 PyObject *args; local
1464 args = PyTuple_New(0);
1466 args = PyTuple_Pack(1, dd->default_factory);
1467 if (args
1583 defdict_init(PyObject *self, PyObject *args, PyObject *kwds) argument
[all...]
H A D_csv.c339 dialect_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) argument
353 if (!PyArg_ParseTupleAndKeywords(args, kwargs,
925 csv_reader(PyObject *module, PyObject *args, PyObject *keyword_args) argument
945 if (!PyArg_UnpackTuple(args, "", 1, 2, &iterator, &dialect)) {
1344 csv_writer(PyObject *module, PyObject *args, PyObject *keyword_args) argument
1360 if (!PyArg_UnpackTuple(args, "", 1, 2, &output_file, &dialect)) {
1384 csv_list_dialects(PyObject *module, PyObject *args) argument
1390 csv_register_dialect(PyObject *module, PyObject *args, PyObject *kwargs) argument
1395 if (!PyArg_UnpackTuple(args, "", 1, 2, &name_obj, &dialect_obj))
1430 csv_field_size_limit(PyObject *module, PyObject *args) argument
[all...]
H A D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) argument
19 if (!PyArg_UnpackTuple(args, "reduce", 2, 3, &func, &seq, &result))
32 if ((args = PyTuple_New(2)) == NULL)
38 if (args->ob_refcnt > 1) {
39 Py_DECREF(args);
40 if ((args = PyTuple_New(2)) == NULL)
54 PyTuple_SetItem(args, 0, result);
55 PyTuple_SetItem(args, 1, op2);
56 if ((result = PyEval_CallObject(func, args)) == NULL)
61 Py_DECREF(args);
95 PyObject *args; member in struct:__anon2729
104 partial_new(PyTypeObject *type, PyObject *args, PyObject *kw) argument
162 partial_call(partialobject *pto, PyObject *args, PyObject *kw) argument
[all...]

Completed in 326 milliseconds

1234567891011