/external/elfutils/src/libelf/ |
H A D | elf_clone.c | 41 elf_clone (Elf *elf, Elf_Cmd cmd) argument 52 if (cmd != ELF_C_EMPTY) 57 elf->maximum_size, elf->cmd, elf->parent, elf->kind,
|
/external/linux-tools-perf/src/tools/perf/tests/ |
H A D | 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/libpcap/ |
H A D | pcap-netfilter-linux-android.c | 20 android_nflog_send_config_cmd(int fd, u_int16_t group_id, u_int8_t cmd, u_int8_t family) argument 24 return nflog_send_config_cmd(&handle, group_id, cmd, family);
|
/external/toybox/toys/other/ |
H A D | 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_fla [all...] |
/external/boringssl/src/util/bot/ |
H A D | vs_env.py | 27 cmd = sys.argv[2:] variable 36 sys.exit(subprocess.call(vs_version.SetupScript(target_arch) + ["&&"] + cmd,
|
/external/clang/test/Analysis/ |
H A D | 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/google-breakpad/src/common/mac/ |
H A D | macho_utilities.h | 60 uint32_t cmd; /* LC_UUID */ member in struct:breakpad_uuid_command
|
/external/kernel-headers/original/uapi/linux/ |
H A D | baycom.h | 22 int cmd; member in struct:baycom_ioctl
|
/external/blktrace/btt/ |
H A D | bno_plot.py | 117 cmd = '/usr/bin/gnuplot %s/plot.cmds -' % tmpdir variable 119 if verbose: print 'Executing %s' % cmd 121 cmd = cmd.split(None) variable 123 os.execvp(cmd[0], cmd)
|
/external/clang/tools/diagtool/ |
H A D | DiagTool.h | 26 const std::string cmd; member in class:diagtool::DiagTool 32 llvm::StringRef getName() const { return cmd; }
|
/external/e2fsprogs/lib/ |
H A D | fpopen.c | 33 extern FILE *fpopen(const char *cmd, const char *mode); 35 FILE *fpopen(const char *cmd, const char *mode) argument 69 buf = malloc(strlen(cmd)+1); 72 strcpy(buf, cmd);
|
/external/e2fsprogs/resize/ |
H A D | test_extent.c | 22 char *cp, *cmd, *arg1, *arg2; local 50 cmd = buf; 67 if (!strcmp(cmd, "create")) { 81 if (!strcmp(cmd, "free")) { 84 } else if (!strcmp(cmd, "add")) { 88 } else if (!strcmp(cmd, "lookup")) { 92 } else if (!strcmp(cmd, "dump")) { 94 } else if (!strcmp(cmd, "iter_test")) {
|
/external/elfutils/src/tests/ |
H A D | arextract.c | 37 Elf_Cmd cmd; local 56 cmd = ELF_C_READ; 57 elf = elf_begin (fd, cmd, NULL); 72 while ((subelf = elf_begin (fd, cmd, elf)) != NULL) 146 cmd = elf_next (subelf);
|
H A D | 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);
|
H A D | saridx.c | 92 Elf_Cmd cmd; local 124 cmd = ELF_C_READ; 125 elf = elf_begin (fd, cmd, NULL); 147 while ((subelf = elf_begin (fd, cmd, elf)) != NULL) 225 cmd = elf_next (subelf);
|
/external/libedit/src/ |
H A D | keymacro.h | 44 el_action_t cmd; /* If it is a command the # */ member in union:keymacro_value_t
|
/external/libnl/src/ |
H A D | 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");
|
/external/llvm/utils/ |
H A D | bisect | 27 cmd = [x % {'count':count} for x in args.command] variable 28 print cmd 29 result = subprocess.call(cmd)
|
/external/toybox/toys/pending/ |
H A D | watch.c | 32 char *header, *cmd = *toys.optargs; local 37 char * oldcmd = cmd; 38 cmd = xmprintf("%s %s", oldcmd, toys.optargs[i]); 41 header = xmprintf("Every %us: %s", TT.interval, cmd); 57 retval = system(cmd); 68 if (cmd != *toys.optargs) free(cmd);
|
/external/vixl/tools/ |
H A D | generate_simulator_traces.py | 143 cmd = ' '.join([args.runner, '--sim_test_trace', test]) variable 144 status, output = util.getstatusoutput(cmd) 145 if status != 0: util.abort('Failed to run ' + cmd + '.')
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
H A D | userdatarequest.cpp | 89 QString cmd = QString(WPA_CTRL_RSP) + field + '-' + local 92 wpagui->ctrlRequest(cmd.toLocal8Bit().constData(), reply, &reply_len);
|
/external/boringssl/src/crypto/x509/ |
H A D | by_file.c | 69 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, 90 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, argument 96 switch (cmd)
|
/external/clang/test/CodeGen/ |
H A D | 2007-09-28-PackedUnionMember.c | 29 struct H cmd = { 4, 412 }; local
|
/external/iproute2/ip/ |
H A D | tunnel.c | 84 int tnl_add_ioctl(int cmd, const char *basedev, const char *name, void *p) argument 90 if (cmd == SIOCCHGTUNNEL && name[0]) 96 err = ioctl(fd, cmd, &ifr); 125 static int tnl_gen_ioctl(int cmd, const char *name, argument 135 err = ioctl(fd, cmd, &ifr); 138 cmd, strerror(errno)); 143 int tnl_prl_ioctl(int cmd, const char *name, void *p) argument 145 return tnl_gen_ioctl(cmd, name, p, -1); 148 int tnl_6rd_ioctl(int cmd, const char *name, void *p) argument 150 return tnl_gen_ioctl(cmd, nam [all...] |
/external/javassist/sample/evolve/ |
H A D | DemoServer.java | 47 public void doReply(InputStream in, OutputStream out, String cmd)
argument 50 if (cmd.startsWith("GET /java.html ")) {
54 else if (cmd.startsWith("GET /update.html ")) {
72 super.doReply(in, out, cmd);
|