/third_party/ltp/tools/apicmds/ |
H A D | ltpapicmd.c | 72 static char cmd_name[1024]; /* name by which this program is invoked tst_brk etc */ variable 126 cmd_name); in apicmd_brk() 148 cmd_name); in apicmd_res() 167 cmd_name); in apicmd_brkm() 184 cmd_name); in apicmd_resm() 259 strcpy(cmd_name, SAFE_BASENAME(NULL, (argv++)[0])); in main() 265 if(!strcmp(cmd_name, "tst_fs_has_free")) { in main() 293 if (strcmp(cmd_name, "tst_brk") == 0) { in main() 295 } else if (strcmp(cmd_name, "tst_res") == 0) { in main() 297 } else if (strcmp(cmd_name, "tst_brk in main() [all...] |
/third_party/ltp/testcases/lib/ |
H A D | tst_cgctl.c | 51 const char *cmd_name = argv[1]; in main() local 56 if (!strcmp(cmd_name, "require")) { in main() 66 } else if (!strcmp(cmd_name, "cleanup")) { in main() 70 } else if (!strcmp(cmd_name, "print")) { in main() 72 } else if (!strcmp(cmd_name, "help")) { in main() 77 fprintf(stderr, "tst_cgctl: Unknown command '%s' given\n", cmd_name); in main() 83 cmd_name); in main()
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | generate_entry_points.py | 1253 def is_aliasing_excepted(api, cmd_name): 1254 return api == apis.GLES and cmd_name in ALIASING_EXCEPTIONS 1289 def format_entry_point_decl(api, cmd_name, proto, params): 1291 stripped = strip_api_prefix(cmd_name) 1296 return_type=proto[:-len(cmd_name)].strip(), 1417 def is_context_lost_acceptable_cmd(cmd_name): 1428 if cmd_name.startswith(context_lost_entry_pont): 1433 def get_context_getter_function(cmd_name): 1434 if is_context_lost_acceptable_cmd(cmd_name): 1440 def get_valid_context_check(cmd_name) [all...] |
H A D | registry_xml.py | 408 def strip_api_prefix(cmd_name): 409 return cmd_name.lstrip("cwegl") 414 cmd_name = proto.find('name').text 415 return cmd_name 554 cmd_name = get_cmd_name(command_node) 557 cmd_name = cmd_name if cmd_name[:3] == 'wgl' else 'wgl' + cmd_name 559 if cmd_name no [all...] |
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/ |
H A D | commands.c | 105 gcp->program_name, gcp->cmd_name, arg_name); in required_arg() 106 help_me(gcp->cmd_name); in required_arg() 471 gcp->program_name, gcp->cmd_name); 1068 char *cmd_name; member 1074 .cmd_name = "quit",.cmd_func = quit,.cmd_help = 1077 .cmd_name = "help",.cmd_func = help_me,.cmd_help = 1080 .cmd_name = "pid",.cmd_func = show_pid,.cmd_help = 1082 .cmd_name = "pause",.cmd_func = pause_me,.cmd_help = 1085 .cmd_name = "numa",.cmd_func = numa_info,.cmd_help = 1089 .cmd_name [all...] |
H A D | memtoy.h | 59 char *cmd_name; /* currently executing command */ member
|
/third_party/vk-gl-cts/external/amber/src/src/vkscript/ |
H A D | command_parser.cc | 98 std::string cmd_name = token->AsString(); in Parse() local 100 if (cmd_name == "draw") { in Parse() 106 cmd_name = token->AsString(); in Parse() 107 if (cmd_name == "rect") in Parse() 109 else if (cmd_name == "arrays") in Parse() 112 r = Result("Unknown draw command: " + cmd_name); in Parse() 114 } else if (cmd_name == "clear") { in Parse() 116 } else if (cmd_name == "ssbo") { in Parse() 118 } else if (cmd_name == "uniform") { in Parse() 120 } else if (cmd_name in Parse() [all...] |
/third_party/node/deps/openssl/openssl/crypto/engine/ |
H A D | eng_ctrl.c | 29 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null() 37 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name() 86 /* Now handle cmd_name -> cmd_num conversion */ in int_ctrl_helper() 111 return strlen(cdp->cmd_name); in int_ctrl_helper() 113 return strlen(strcpy(s, cdp->cmd_name)); in int_ctrl_helper() 196 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, in ENGINE_ctrl_cmd() argument 201 if (e == NULL || cmd_name == NULL) { in ENGINE_ctrl_cmd() 207 0, (void *)cmd_name, NULL)) <= 0) { in ENGINE_ctrl_cmd() 232 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, in ENGINE_ctrl_cmd_string() argument 239 if (e == NULL || cmd_name in ENGINE_ctrl_cmd_string() [all...] |
/third_party/openssl/crypto/engine/ |
H A D | eng_ctrl.c | 29 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null() 37 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name() 86 /* Now handle cmd_name -> cmd_num conversion */ in int_ctrl_helper() 111 return strlen(cdp->cmd_name); in int_ctrl_helper() 113 return strlen(strcpy(s, cdp->cmd_name)); in int_ctrl_helper() 196 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, in ENGINE_ctrl_cmd() argument 201 if (e == NULL || cmd_name == NULL) { in ENGINE_ctrl_cmd() 207 0, (void *)cmd_name, NULL)) <= 0) { in ENGINE_ctrl_cmd() 232 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, in ENGINE_ctrl_cmd_string() argument 239 if (e == NULL || cmd_name in ENGINE_ctrl_cmd_string() [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | bdist.py | 124 cmd_name = commands[i] 125 sub_cmd = self.reinitialize_command(cmd_name) 126 if cmd_name not in self.no_format_option: 130 if cmd_name == 'bdist_dumb': 136 if cmd_name in commands[i+1:]: 138 self.run_command(cmd_name)
|
H A D | install.py | 579 for cmd_name in self.get_sub_commands(): 580 self.run_command(cmd_name) 625 for cmd_name in self.get_sub_commands(): 626 cmd = self.get_finalized_command(cmd_name) 643 for cmd_name in self.get_sub_commands(): 644 cmd = self.get_finalized_command(cmd_name)
|
H A D | build.py | 134 for cmd_name in self.get_sub_commands(): 135 self.run_command(cmd_name)
|
H A D | register.py | 48 for cmd_name in self.get_sub_commands(): 49 self.run_command(cmd_name)
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_extensions.py | 249 cmd_name = cmd.get("name") 250 if cmd_name: 251 if commands_type[cmd_name] in ("VkDevice", "VkCommandBuffer", "VkQueue"): 252 entry.device_commands.append(cmd_name) 253 elif commands_type[cmd_name] in ("VkPhysicalDevice"): 254 entry.pdevice_commands.append(cmd_name) 256 entry.instance_commands.append(cmd_name)
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl_common.h | 40 static inline int fcntl_compat(const char *file, const int line, const char *cmd_name, in fcntl_compat() argument 65 cmd_name, in fcntl_compat()
|
/third_party/mesa3d/src/amd/vulkan/layers/ |
H A D | radv_sqtt_layer.c | 416 #define EVENT_MARKER_ALIAS(cmd_name, api_name, ...) \ 420 radv_Cmd##cmd_name(__VA_ARGS__); \ 424 #define EVENT_MARKER(cmd_name, ...) EVENT_MARKER_ALIAS(cmd_name, cmd_name, __VA_ARGS__); 599 #define API_MARKER_ALIAS(cmd_name, api_name, ...) \ 602 radv_Cmd##cmd_name(__VA_ARGS__); \ 605 #define API_MARKER(cmd_name, ...) API_MARKER_ALIAS(cmd_name, cmd_name, __VA_ARGS_ [all...] |
/third_party/f2fs-tools/tools/ |
H A D | f2fscrypt.c | 681 const char *cmd_name; member 896 for (p = cmd_list; p->cmd_name; p++) { in do_help() 899 if (strcmp(p->cmd_name, argv[1]) == 0) { in do_help() 910 for (p = cmd_list; p->cmd_name; p++) { in do_help() 913 printf(" %-20s %s\n", p->cmd_name, p->cmd_desc); in do_help() 928 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main() 929 if (strcmp(cmd->cmd_name, argv[1]) == 0) { in main()
|
/third_party/skia/third_party/externals/angle2/ |
H A D | PRESUBMIT.py | 241 cmd_name = 'run_code_generation' 243 test_cmd = input_api.Command(name=cmd_name, cmd=cmd, kwargs={}, message=Msg) 245 print('Running ' + cmd_name)
|
/third_party/f2fs-tools/tools/f2fs_io/ |
H A D | f2fs_io.c | 53 const char *cmd_name; member 1354 for (p = cmd_list; p->cmd_name; p++) { in do_help() 1357 if (strcmp(p->cmd_name, argv[1]) == 0) { in do_help() 1368 for (p = cmd_list; p->cmd_name; p++) { in do_help() 1371 printf(" %-20s %s\n", p->cmd_name, p->cmd_desc); in do_help() 1422 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main() 1423 if (strcmp(cmd->cmd_name, argv[1]) == 0) { in main()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_rast_debug.c | 72 static const char *cmd_name(unsigned cmd) in cmd_name() function 183 cmd_name(head->cmd[i]), in debug_bin() 390 debug_printf("%c: %15s", val, cmd_name(block->cmd[k])); in do_debug_bin()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | engine.h | 255 * has cmd_num set to zero and/or cmd_name set to NULL. 259 const char *cmd_name; /* The command name itself */ member 447 * on how to use the cmd_name and cmd_optional. 450 OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, 457 * cmd_name is converted to a command number and the control command is 462 * doesn't support the given cmd_name the return value will be success 479 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
|
/third_party/openssl/include/openssl/ |
H A D | engine.h | 255 * has cmd_num set to zero and/or cmd_name set to NULL. 259 const char *cmd_name; /* The command name itself */ member 447 * on how to use the cmd_name and cmd_optional. 450 OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, 457 * cmd_name is converted to a command number and the control command is 462 * doesn't support the given cmd_name the return value will be success 479 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | engine.h | 249 * has cmd_num set to zero and/or cmd_name set to NULL. 253 const char *cmd_name; /* The command name itself */ member 427 * on how to use the cmd_name and cmd_optional. 429 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, 434 * cmd_name is converted to a command number and the control command is 439 * doesn't support the given cmd_name the return value will be success 454 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
|
/third_party/python/Lib/distutils/ |
H A D | cmd.py | 323 for (cmd_name, method) in self.sub_commands: 325 commands.append(cmd_name)
|
H A D | dist.py | 319 for cmd_name in commands: 320 opt_dict = self.command_options.get(cmd_name) 323 "no option dict for '%s' command" % cmd_name) 326 "option dict for '%s' command:" % cmd_name)
|