Home
last modified time | relevance | path

Searched refs:arguments (Results 1 – 25 of 104) sorted by relevance

12345

/reactos/sdk/lib/ucrt/exec/
H A Dspawnlp.cpp23 Character const* const arguments, in common_spawnlp() argument
37 arguments, in common_spawnlp()
57 char const* const arguments, in _execlp() argument
61 va_start(varargs, arguments); in _execlp()
67 char const* const arguments, in _execlpe() argument
71 va_start(varargs, arguments); in _execlpe()
78 char const* const arguments, in _spawnlp() argument
82 va_start(varargs, arguments); in _spawnlp()
89 char const* const arguments, in _spawnlpe() argument
93 va_start(varargs, arguments); in _spawnlpe()
[all …]
H A Dspawnl.cpp23 Character const* const arguments, in common_spawnl() argument
37 arguments, in common_spawnl()
57 char const* const arguments, in _execl() argument
62 va_start(varargs, arguments); in _execl()
68 char const* const arguments, in _execle() argument
72 va_start(varargs, arguments); in _execle()
79 char const* const arguments, in _spawnl() argument
84 va_start(varargs, arguments); in _spawnl()
91 char const* const arguments, in _spawnle() argument
95 va_start(varargs, arguments); in _spawnle()
[all …]
H A Dspawnvp.cpp25 Character const* const* const arguments, in common_spawnvp() argument
33 _VALIDATE_RETURN(arguments != nullptr, EINVAL, -1); in common_spawnvp()
34 _VALIDATE_RETURN(arguments[0] != nullptr, EINVAL, -1); in common_spawnvp()
142 char const* const* const arguments in _execvp() argument
150 char const* const* const arguments, in _execvpe() argument
160 char const* const* const arguments in _spawnvp() argument
169 char const* const* const arguments, in _spawnvpe() argument
180 wchar_t const* const* const arguments in _wexecvp() argument
188 wchar_t const* const* const arguments, in _wexecvpe() argument
198 wchar_t const* const* const arguments in _wspawnvp() argument
[all …]
H A Dspawnv.cpp171 Character const* const* const arguments, in execute_command() argument
185 arguments, in execute_command()
276 Character const* const* const arguments, in common_spawnv() argument
381 char const* const* const arguments in _execv() argument
389 char const* const* const arguments, in _execve() argument
399 char const* const* const arguments in _spawnv() argument
408 char const* const* const arguments, in _spawnve() argument
419 wchar_t const* const* const arguments in _wexecv() argument
427 wchar_t const* const* const arguments, in _wexecve() argument
437 wchar_t const* const* const arguments in _wspawnv() argument
[all …]
H A Dsystem.cpp45 Character const* arguments[4] = in common_system() local
58 … int const result = static_cast<int>(traits::tspawnve(_P_WAIT, arguments[0], arguments, nullptr)); in common_system()
74 arguments[0] = cmd_exe; in common_system()
75 return static_cast<int>(traits::tspawnvpe(_P_WAIT, arguments[0], arguments, nullptr)); in common_system()
/reactos/dll/win32/jsproxy/
H A Dpac.js104 var argc = arguments.length;
108 if (arguments[argc - 1] == 'GMT') {
114 var wd1 = getDay(arguments[0]);
128 var argc = arguments.length;
139 var tmp = parseInt(arguments[0]);
154 var tmp = parseInt(arguments[i]);
166 var tmp = parseInt(arguments[i]);
194 var argc = arguments.length;
201 if (arguments[argc - 1] == 'GMT') {
212 return (hour == arguments[0]);
[all …]
/reactos/modules/rostests/winetests/jscript/
H A Dlang.js89 ok(testFunc1.arguments === arguments, "testFunc1.arguments = " + testFunc1.arguments);
93 arguments[1] = "x";
95 ok(arguments[1] === "x", "arguments[1] = " + arguments[1]);
97 ok(arguments["0x0"] === undefined, "arguments['0x0'] = " + arguments["0x0"]);
98 ok(arguments["x"] === undefined, "arguments['x'] = " + arguments["x"]);
109 ok(arguments[0] === 2, "arguments[0] = " + arguments[0]);
194 ok(testRecFunc.arguments === arguments, "testRecFunc.arguments = " + testRecFunc.arguments);
197 ok(testRecFunc.arguments === arguments, "testRecFunc.arguments = " + testRecFunc.arguments);
210 ok(arguments === 1, "arguments = " + arguments);
252 arguments = 1;
[all …]
H A Dregexp.js279 ok(arguments.length === 3, "arguments.length = " + arguments.length);
302 ok(str === "[test1] [test2]", "str = " + arguments[3]);
314 ok(arguments.length === 4, "arguments.length = " + arguments.length);
331 ok(str === "[test1] [test2]", "str = " + arguments[3]);
H A Dapi.js348 (function () { tmp = Object.prototype.toString.call(arguments); })();
388 ok(arguments.length === 0, "arguments.length = " + arguments.length);
563 ok(arguments.length === 3, "arguments.length = " + arguments.length);
566 ok(str === "-[test]-", "str = " + arguments[3]);
1997 …ok(arguments.length === argc+1, "arguments.length = " + arguments.length + " expected " + (argc+1)…
1999 ok(arguments[i] === i, "arguments[i] = " + arguments[i]);
2000 var a = arguments;
2012 (function () { callTest.apply(tmp, arguments); })(2,1,2);
2016 ok(arguments.length === 0, "callTest2: arguments.length = " + arguments.length + " expected 0");
2022 (function () { callTest2.apply(tmp, arguments); })();
[all …]
/reactos/dll/win32/jscript/
H A Dfunction.c114 TRACE("(%p)\n", arguments); in Arguments_destructor()
116 if(arguments->buf) { in Arguments_destructor()
124 heap_free(arguments); in Arguments_destructor()
130 return arguments->argc; in Arguments_idx_length()
135 if(arguments->buf) in get_argument_ref()
137 if(arguments->frame->base_scope->frame || idx >= arguments->frame->function->param_cnt) in get_argument_ref()
138 return arguments->jsdisp.ctx->stack + arguments->frame->arguments_off + idx; in get_argument_ref()
239 arguments->frame = NULL; in detach_arguments_object()
243 arguments->buf = heap_alloc(arguments->argc * sizeof(*arguments->buf)); in detach_arguments_object()
244 if(arguments->buf) { in detach_arguments_object()
[all …]
/reactos/modules/rostests/winetests/kernel32/
H A Ddebugger.c597 const char *arguments = " debugger child "; in test_debug_loop() local
618 …cmd = HeapAlloc(GetProcessHeap(), 0, strlen(argv[0]) + strlen(arguments) + strlen(blackbox_file) +… in test_debug_loop()
619 sprintf(cmd, "%s%s%08x \"%s\"", argv[0], arguments, pid, blackbox_file); in test_debug_loop()
661 const char *arguments = "debugger children last"; in doChildren() local
693 cmd = HeapAlloc(GetProcessHeap(), 0, strlen(argv[0]) + strlen(arguments) + 2); in doChildren()
694 sprintf(cmd, "%s %s", argv[0], arguments); in doChildren()
717 const char *arguments = "debugger children"; in test_debug_children() local
735 …cmd = HeapAlloc(GetProcessHeap(), 0, strlen(name) + strlen(arguments) + strlen(blackbox_file) + 5); in test_debug_children()
736 sprintf(cmd, "%s %s \"%s\"", name, arguments, blackbox_file); in test_debug_children()
/reactos/drivers/bus/acpi/busmgr/
H A Dutils.c245 ACPI_OBJECT_LIST *arguments, in acpi_evaluate_integer() argument
257 status = AcpiEvaluateObject(handle, pathname, arguments, &buffer); in acpi_evaluate_integer()
280 ACPI_OBJECT_LIST *arguments, in acpi_evaluate_reference() argument
297 status = AcpiEvaluateObject(handle, pathname, arguments, &buffer); in acpi_evaluate_reference()
/reactos/modules/rostests/winetests/shell32/
H A Dshell32_test.h30 const char* arguments; member
H A Dshelllink.c448 if (desc->arguments) in create_lnk_()
450 r = IShellLinkA_SetArguments(sl, desc->arguments); in create_lnk_()
680 desc.arguments=""; in test_load_save()
689 desc.arguments=""; in test_load_save()
712 desc.arguments="/option1 /option2 \"Some string\""; in test_load_save()
729 desc.arguments="/option1 /option2 \"Some string\""; in test_load_save()
743 desc.arguments="/option1 /option2 \"Some string\""; in test_load_save()
759 desc.arguments="/option1 /option2 \"Some string\""; in test_load_save()
790 desc.arguments=""; in test_load_save()
810 desc.arguments=""; in test_load_save()
[all …]
/reactos/dll/win32/vbscript/
H A Dvbscript.rc48 VBSE_NAMED_ARGS_NOT_SUPPORTED "Object doesn't support named arguments"
52 VBSE_FUNC_ARITY_MISMATCH "Wrong number of arguments or invalid property assignment"
/reactos/base/applications/cmdutils/wscript/
H A DCMakeLists.txt5 arguments.c
/reactos/base/applications/cmdutils/cscript/
H A DCMakeLists.txt7 ${wscript_folder}/arguments.c
/reactos/drivers/bus/acpi/include/
H A Dacpi_bus.h52 struct acpi_object_list *arguments,
58 struct acpi_object_list *arguments,
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/
H A Dconfigure.ac482 AC_DEFINE(STAT_STATFS3_OSF1,1,[Whether statfs requires 3 arguments])
513 …AC_DEFINE(STAT_STATFS2_BSIZE,1,[Whether statfs requires two arguments and struct statfs has bsize …
534 AC_DEFINE(STAT_STATFS4,1,[Whether statfs requires 4 arguments])
562 … AC_DEFINE(STAT_STATFS2_FSIZE,1,[Whether statfs requires 2 arguments and struct statfs has fsize])
593 …AC_DEFINE(STAT_STATFS2_FS_DATA,1,[Whether statfs requires 2 arguments and struct fs_data is availa…
/reactos/base/services/nfsd/
H A Dsources27 4100 - unused function call arguments (we have lots of stubs)
/reactos/sdk/cmake/
H A Dwriting_CmakeLists_for_ReactOS.txt6 Optional arguments are marked with [brackets], input is marked with <comparison signs>.
/reactos/dll/3rdparty/libtirpc/src/
H A Dsources103 4100 - unused function call arguments (we have lots of stubs)
/reactos/sdk/tools/cabman/
H A Ddff.txt5 name, and possibly blank delimited arguments. Commands and variable names are
/reactos/base/applications/cmdutils/whoami/lang/
H A Den-US.rc42 If no arguments are provided, displays the current domain and user name.\n\
/reactos/sdk/lib/ucrt/inc/
H A Dcorecrt_internal_stdio_output.h1046 standard_base(Ts&&... arguments) throw()
1047 : output_adapter_data<Character, OutputAdapter>{arguments... },
1154 format_validation_base(Ts&&... arguments) throw()
1155 : standard_base<Character, OutputAdapter>{arguments...}
1216 positional_parameter_base(Ts&&... arguments) throw()
1217 : format_validation_base<Character, OutputAdapter>{arguments... },

12345