HomeSort by relevance Sort by last modified time
    Searched defs:argv (Results 276 - 300 of 575) sorted by null

<<11121314151617181920>>

  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 96 static std::unique_ptr<Driver> Create(llvm::ArrayRef<const char*> argv);
1003 std::unique_ptr<Driver> Driver::Create(llvm::ArrayRef<const char*> argv) {
1021 opt_table.PrintHelp(mcld::outs(), argv[0], "MCLinker", local
    [all...]
  /system/extras/perfprofd/
perfprofdcore.cc 248 const char *argv[10]; local
250 argv[slot++] = "/system/bin/dumpsys";
251 argv[slot++] = "media.camera";
252 argv[slot++] = nullptr;
253 execvp(argv[0], (char * const *)argv);
485 const char *argv[max_args]; local
487 argv[slot++] = perf_path.c_str();
488 argv[slot++] = "record";
491 argv[slot++] = "-o"
    [all...]
  /system/nfc/src/adaptation/
NfcAdaptation.cc 232 const char* argv[] = {"libnfc_nci"}; local
234 base::CommandLine::Init(1, argv);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
_warnings.c 519 PyObject *argv = PySys_GetObject("argv"); local
520 if (argv != NULL && PyList_Size(argv) > 0) {
522 *filename = PyList_GetItem(argv, 0);
524 /* If sys.argv[0] is false, then use '__main__'. */
538 /* embedded interpreters don't have sys.argv, see bug #839151 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 518 PyObject *argv = PySys_GetObject("argv"); local
519 if (argv != NULL && PyList_Size(argv) > 0) {
521 *filename = PyList_GetItem(argv, 0);
523 /* If sys.argv[0] is false, then use '__main__'. */
537 /* embedded interpreters don't have sys.argv, see bug #839151 */
  /external/ImageMagick/MagickCore/
string.c 2024 **argv; local
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 391 v8::Handle<v8::Value> argv[] = { local
397 context->Global(), 2, argv);
  /external/deqp/modules/internal/
ditFrameworkTests.cpp 94 const char* argv[] = local
101 if (!cmdLine.parse(DE_LENGTH_OF_ARRAY(argv), argv))
159 const char* argv[] = local
166 TCU_CHECK(cmdLine.parse(DE_LENGTH_OF_ARRAY(argv), argv));
  /external/dhcpcd-6.8.2/
dhcpcd.c 567 configure_interface(struct interface *ifp, int argc, char **argv,
574 add_options(ifp->ctx, ifp->name, ifp->options, argc, argv);
891 dhcpcd_initstate1(struct interface *ifp, int argc, char **argv,
896 configure_interface(ifp, argc, argv, options);
922 dhcpcd_initstate1(ifp, ifp->ctx->argc, ifp->ctx->argv, options);
946 const char * const argv[] = { ifname }; local
972 ifs = if_discover(ctx, -1, UNCONST(argv));
1093 if_reboot(struct interface *ifp, int argc, char **argv)
1099 dhcpcd_initstate1(ifp, argc, argv, 0);
1112 add_options(ctx, NULL, ifo, ctx->argc, ctx->argv);
    [all...]
  /external/iproute2/ip/
iproute_lwtunnel.c 473 char **argv = *argvp; local
481 if (strcmp(*argv, "mode") == 0) {
484 duparg2("mode", *argv);
485 encap = read_seg6mode_type(*argv);
487 invarg("\"mode\" value is invalid\n", *argv);
488 } else if (strcmp(*argv, "segs") == 0) {
491 duparg2("segs", *argv);
494 *argv);
496 strlcpy(segbuf, *argv, 1024);
497 } else if (strcmp(*argv, "hmac") == 0)
537 char **argv = *argvp; local
643 char **argv = *argvp; local
689 char **argv = *argvp; local
750 char **argv = *argvp; local
795 char **argv = *argvp; local
910 char **argv = *argvp; local
962 char **argv = *argvp; local
    [all...]
ipxfrm.c 643 char **argv = *argvp; local
646 if (get_u32(&mark->v, *argv, 0)) {
647 invarg("MARK value is invalid\n", *argv);
656 if (strcmp(*argv, "mask") == 0) {
658 if (get_u32(&mark->m, *argv, 0)) {
659 invarg("MASK value is invalid\n", *argv);
668 *argvp = argv;
1065 char **argv = *argvp; local
1070 if (strcmp(*argv, "src") == 0) {
1073 get_prefix(&src, *argv, preferred_family)
1155 char **argv = *argvp; local
1179 char **argv = *argvp; local
1198 char **argv = *argvp; local
1213 char **argv = *argvp; local
1371 char **argv = *argvp; local
1451 char **argv = *argvp; local
    [all...]
xfrm_state.c 178 char **argv = *argvp; local
180 if (get_be32(seq, *argv, 0))
181 invarg("SEQ value is invalid", *argv);
184 *argvp = argv;
192 char **argv = *argvp; local
193 int len = strlen(*argv);
195 if (len > 2 && strncmp(*argv, "0x", 2) == 0) {
198 if (get_u8(&val, *argv, 16))
199 invarg("FLAG value is invalid", *argv);
203 if (strcmp(*argv, "noecn") == 0
239 char **argv = *argvp; local
272 char **argv = *argvp; local
    [all...]
  /external/kmod/tools/
modprobe.c 719 char **args = NULL, **argv; local
732 argv = prepend_options_from_env(&argc, orig_argv);
733 if (argv == NULL) {
740 c = getopt_long(argc, argv, cmdopts_s, cmdopts, &idx);
843 args = argv + optind;
907 if (argv != orig_argv)
908 free(argv);
  /external/ppp/pppd/
ipv6cp.c 332 setifaceid(argv)
333 char **argv;
343 arg = *argv;
1389 char *argv[8]; local
    [all...]
  /external/python/cpython2/Python/
_warnings.c 519 PyObject *argv = PySys_GetObject("argv"); local
520 if (argv != NULL && PyList_Size(argv) > 0) {
522 *filename = PyList_GetItem(argv, 0);
524 /* If sys.argv[0] is false, then use '__main__'. */
537 /* embedded interpreters don't have sys.argv, see bug #839151 */
  /external/python/cpython3/Modules/
_posixsubprocess.c 390 char *const argv[],
501 execve(executable, argv, envp);
503 execv(executable, argv);
558 char *const *exec_array, *const *argv = NULL, *const *envp = NULL; local
625 fast_args = PySequence_Fast(process_args, "argv must be a tuple");
640 argv = _PySequence_BytesToCharpArray(converted_args);
643 if (!argv)
689 child_exec(exec_array, argv, envp, cwd,
716 if (argv)
717 _Py_FreeCharPArray(argv);
    [all...]
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 224 int main(int argc, const char **argv) {
244 strcpy(WASM_REF(char, HeapBreak), argv[i]); local
245 HeapBreak += strlen(argv[i]) + 1;
  /external/syslinux/com32/rosh/
rosh.c 24 * commands Break into argv/argc-like array
132 * parse_args1: Try 1 at parsing a string to an argc/argv pair. use free_args1 to free memory malloc'd
134 * Derived from com32/lib/sys/argv.c:__parse_argv()
191 /* Free argv created by parse_args1()
192 * argv Argument Values
194 void free_args1(char ***argv)
197 s = **argv;
198 free(*argv);
202 /* Convert a string to an argc/argv pair
204 * argv Argument Value
1319 char **argv; local
    [all...]
  /external/toybox/toys/pending/
tar.c 298 char *argv[] = {(toys.optflags&FLAG_z)?"gzip":"bzip2", "-f", NULL}; local
302 xexec(argv);
330 char buf[64], *argv[4] = {"sh", "-c", TT.tocmd, NULL}; local
350 xexec(argv);
520 char *argv[] = local
525 xexec(argv);
  /external/v8/samples/
process.cc 293 Local<Value> argv[argc] = {request_obj}; local
297 if (!process->Call(context, context->Global(), argc, argv).ToLocal(&result)) {
604 char* argv[],
608 string arg = argv[i];
678 int main(int argc, char* argv[]) {
679 v8::V8::InitializeICUDefaultLocation(argv[0]);
680 v8::V8::InitializeExternalStartupData(argv[0]);
686 ParseOptions(argc, argv, &options, &file);
  /external/valgrind/coregrind/
m_libcproc.c 62 /* As deduced from sp_at_startup, the client's argc, argv[] and
448 void VG_(execv) ( const HChar* filename, const HChar** argv )
457 (UWord)filename, (UWord)argv, (UWord)envp);
463 Int VG_(spawn) ( const HChar *filename, const HChar **argv )
466 vg_assert(argv != NULL);
475 /* Now combine argv and argp into argenv. */
477 for (const HChar **p = argv; *p != NULL; p++) {
499 for (const HChar **p = argv; *p != NULL; p++) {
531 VG_(execv)(argv[0], argv);
549 const HChar *argv[4] = { "\/bin\/sh", "-c", cmd, 0 }; local
    [all...]
  /external/valgrind/lackey/
lk_main.c 370 IRExpr** argv; local
376 argv = mkIRExprVec_1( mkIRExpr_HWord( (HWord)&detailCounts[op][typeIx] ) );
379 argv);
483 IRExpr** argv; local
509 argv = mkIRExprVec_2( ev->addr, mkIRExpr_HWord( ev->size ) );
512 argv );
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_unix.c 824 char *argv[MAX_ARG + 1]; local
830 argv[0] = _program;
839 argv[i++] = pos;
844 argv[i] = NULL;
846 execv(program, argv);
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 779 const char* const argv[] = { local
790 for (int i = 0; argv[i] != NULL; i++) {
791 printf(" %s", argv[i]);
825 execv(kCommand, const_cast<char* const*>(argv));
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 535 const char *argv[],
538 /* Use the extra word of space provided for us in argv by caller. */
539 const char *argv0 = argv[0];
540 const char *const *end = argv;
543 memmove(argv+2, argv+1, (end-argv) * sizeof (*end));
544 argv[0] = "/bin/sh";
545 argv[1] = file;
546 execve(argv[0], (char **) argv, (char **) envp)
693 const char **argv; member in struct:_ChildStuff
    [all...]

Completed in 1058 milliseconds

<<11121314151617181920>>