Home
last modified time | relevance | path

Searched refs:cmd_name (Results 1 – 25 of 36) sorted by relevance

12

/third_party/ltp/tools/apicmds/
Dltpapicmd.c72 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_brkm") == 0) { in main()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dgenerate_entry_points.py576 def format_entry_point_decl(cmd_name, proto, params, is_explicit_context): argument
579 name=cmd_name[2:],
580 return_type=proto[:-len(cmd_name)],
662 def default_return_value(cmd_name, return_type): argument
665 return "GetDefaultReturnValue<EntryPoint::" + cmd_name[2:] + ", " + return_type + ">()"
668 def get_context_getter_function(cmd_name, is_explicit_context): argument
681 if cmd_name.startswith(context_lost_entry_pont):
706 def get_packed_enums(cmd_packed_gl_enums, cmd_name): argument
708 return cmd_packed_gl_enums.get(strip_suffix(cmd_name), {})
711 def format_entry_point_def(command_node, cmd_name, proto, params, is_explicit_context, argument
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dgenerate_entry_points.py1253 def is_aliasing_excepted(api, cmd_name): argument
1254 return api == apis.GLES and cmd_name in ALIASING_EXCEPTIONS
1289 def format_entry_point_decl(api, cmd_name, proto, params): argument
1291 stripped = strip_api_prefix(cmd_name)
1296 return_type=proto[:-len(cmd_name)].strip(),
1417 def is_context_lost_acceptable_cmd(cmd_name): argument
1428 if cmd_name.startswith(context_lost_entry_pont):
1433 def get_context_getter_function(cmd_name): argument
1434 if is_context_lost_acceptable_cmd(cmd_name):
1440 def get_valid_context_check(cmd_name): argument
[all …]
Dregistry_xml.py408 def strip_api_prefix(cmd_name): argument
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 not in commands:
571 self._cmd_info.append((cmd_name, command_node, param_text, proto_text))
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
Dcommands.c105 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 = "migrate",.cmd_func = migrate_process,.cmd_help =
[all …]
Dmemtoy.h59 char *cmd_name; /* currently executing command */ member
/third_party/vk-gl-cts/external/amber/src/src/vkscript/
Dcommand_parser.cc98 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 == "patch") { in Parse()
[all …]
/third_party/openssl/crypto/engine/
Deng_ctrl.c29 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()
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 == NULL) { in ENGINE_ctrl_cmd_string()
245 0, (void *)cmd_name, NULL)) <= 0) { in ENGINE_ctrl_cmd_string()
/third_party/python/Lib/distutils/command/
Dbdist.py127 cmd_name = commands[i]
128 sub_cmd = self.reinitialize_command(cmd_name)
129 if cmd_name not in self.no_format_option:
133 if cmd_name == 'bdist_dumb':
139 if cmd_name in commands[i+1:]:
141 self.run_command(cmd_name)
Dinstall.py579 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)
Dbuild.py134 for cmd_name in self.get_sub_commands():
135 self.run_command(cmd_name)
Dregister.py48 for cmd_name in self.get_sub_commands():
49 self.run_command(cmd_name)
Dsdist.py146 for cmd_name in self.get_sub_commands():
147 self.run_command(cmd_name)
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_extensions.py249 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/flutter/skia/third_party/externals/angle2/
DPRESUBMIT.py54 cmd_name = 'run_code_generation'
56 test_cmd = input_api.Command(name=cmd_name, cmd=cmd, kwargs={}, message=Msg)
58 print('Running ' + cmd_name)
/third_party/f2fs-tools/tools/
Df2fscrypt.c680 const char *cmd_name; member
895 for (p = cmd_list; p->cmd_name; p++) { in do_help()
898 if (strcmp(p->cmd_name, argv[1]) == 0) { in do_help()
909 for (p = cmd_list; p->cmd_name; p++) { in do_help()
912 printf(" %-20s %s\n", p->cmd_name, p->cmd_desc); in do_help()
927 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main()
928 if (strcmp(cmd->cmd_name, argv[1]) == 0) { in main()
/third_party/mesa3d/src/amd/vulkan/layers/
Dradv_sqtt_layer.c416 #define EVENT_MARKER_ALIAS(cmd_name, api_name, ...) \ argument
420 radv_Cmd##cmd_name(__VA_ARGS__); \
424 #define EVENT_MARKER(cmd_name, ...) EVENT_MARKER_ALIAS(cmd_name, cmd_name, __VA_ARGS__); argument
599 #define API_MARKER_ALIAS(cmd_name, api_name, ...) \ argument
602 radv_Cmd##cmd_name(__VA_ARGS__); \
605 #define API_MARKER(cmd_name, ...) API_MARKER_ALIAS(cmd_name, cmd_name, __VA_ARGS__); argument
/third_party/skia/third_party/externals/angle2/
DPRESUBMIT.py241 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/openssl/ohos_lite/include/openssl/
Dengine.h253 const char *cmd_name; /* The command name itself */ member
429 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,
454 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
/third_party/f2fs-tools/tools/f2fs_io/
Df2fs_io.c53 const char *cmd_name; member
1309 for (p = cmd_list; p->cmd_name; p++) { in do_help()
1312 if (strcmp(p->cmd_name, argv[1]) == 0) { in do_help()
1323 for (p = cmd_list; p->cmd_name; p++) { in do_help()
1326 printf(" %-20s %s\n", p->cmd_name, p->cmd_desc); in do_help()
1377 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main()
1378 if (strcmp(cmd->cmd_name, argv[1]) == 0) { in main()
/third_party/openssl/include/openssl/
Dengine.h259 const char *cmd_name; /* The command name itself */ member
450 OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,
479 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
/third_party/python/Lib/distutils/
Dcmd.py323 for (cmd_name, method) in self.sub_commands:
325 commands.append(cmd_name)
Ddist.py319 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)
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_rast_debug.c72 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/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dconsistency_tools.py180 def get_codes_for_command_and_type(self, cmd_name, type_name): argument
191 def get_required_codes_for_command(self, cmd_name): argument
197 def get_forbidden_codes_for_command(self, cmd_name): argument

12