HomeSort by relevance Sort by last modified time
    Searched defs:cmd (Results 1 - 25 of 1750) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/src/tools/perf/tests/
python-use.c 13 char *cmd; local
16 if (asprintf(&cmd, "echo \"import sys ; sys.path.append('%s'); import perf\" | %s %s",
20 ret = system(cmd) ? -1 : 0;
21 free(cmd);
  /external/toybox/toys/other/
vconfig.c 33 char *cmd; local
38 cmd = toys.optargs[0];
40 if (!strcmp(cmd, "set_name_type")) {
48 error_exit("%s: unknown '%s'", cmd, toys.optargs[1]);
52 request.cmd = SET_VLAN_NAME_TYPE_CMD;
60 if (!strcmp(cmd, "add")) {
61 request.cmd = ADD_VLAN_CMD;
65 } else if (!strcmp(cmd, "rem")) request.cmd = DEL_VLAN_CMD;
66 else if (!strcmp(cmd, "set_flag"))
    [all...]
  /packages/apps/Launcher3/
update_gallery_files.py 52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir) variable
53 print cmd
54 os.system(cmd)
update_system_wallpaper_cropper.py 56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir) variable
57 print cmd
58 os.system(cmd)
  /system/core/reboot/
reboot.c 29 const char *cmd = "reboot"; local
44 cmd = "shutdown";
60 prop_len = snprintf(property_val, sizeof(property_val), "%s,%s", cmd, optarg);
  /system/extras/simpleperf/
cmd_help.cpp 38 void PrintLongHelpForOneCommand(const Command& cmd);
45 Command* cmd = Command::FindCommandByName(args[1]); local
46 if (cmd == nullptr) {
51 PrintLongHelpForOneCommand(*cmd);
  /bionic/libc/kernel/uapi/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /development/ndk/platforms/android-21/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /external/boringssl/src/util/bot/
vs_env.py 23 print >>sys.stderr, "Usage: vs_env.py TARGET_ARCH CMD..."
27 cmd = sys.argv[2:] variable
36 sys.exit(subprocess.call(vs_version.SetupScript(target_arch) + ["&&"] + cmd,
  /external/clang/test/Analysis/
rdar-6541136-region.c 11 struct load_wine *cmd = (void*) &wonky[1]; local
12 cmd = cmd;
23 struct load_wine *cmd = (void*) &wonky[1]; local
24 cmd = cmd;
  /external/elfutils/src/tests/
arls.c 72 Elf_Cmd cmd = ELF_C_READ_MMAP; local
73 while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
100 cmd = elf_next (subelf);
  /external/google-breakpad/src/common/mac/
macho_utilities.h 60 uint32_t cmd; /* LC_UUID */ member in struct:breakpad_uuid_command
  /external/kernel-headers/original/uapi/linux/
baycom.h 22 int cmd; member in struct:baycom_ioctl
  /external/libnl/src/
nl-list-caches.c 95 struct genl_cmd *cmd = &genl_ops->o_cmds[i]; local
102 cmd->c_name, cmd->c_id, cmd->c_maxattr,
103 cmd->c_msg_parser ? "yes" : "no",
104 cmd->c_attr_policy ? "yes" : "no");
  /hardware/ti/omap3/dspbridge/inc/
rmstypes.h 56 RMS_WORD cmd; /* Message code */ member in struct:RMS_DSPMSG
  /hardware/ti/omap3/dspbridge/libbridge/inc/
rmstypes.h 56 RMS_WORD cmd; /* Message code */ member in struct:RMS_DSPMSG
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
baycom.h 22 int cmd; member in struct:baycom_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
baycom.h 22 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
baycom.h 29 int cmd; member in struct:baycom_ioctl
  /system/core/toolbox/
toolbox.c 59 char *cmd = strrchr(argv[0], '/'); local
60 if (cmd)
61 name = cmd + 1;

Completed in 763 milliseconds

1 2 3 4 5 6 7 8 91011>>