Home
last modified time | relevance | path

Searched defs:Cmd (Results 1 – 25 of 177) sorted by relevance

12345678

/aosp_15_r20/prebuilts/go/linux-x86/src/os/exec/
Dexec.go147 type Cmd struct { struct
153 Path string
159 Args []string
169 Env []string
174 Dir string
189 Stdin io.Reader
207 Stdout io.Writer
208 Stderr io.Writer
215 ExtraFiles []*os.File
219 SysProcAttr *syscall.SysProcAttr
[all …]
/aosp_15_r20/build/soong/ui/build/
H A Dexec.go29 type Cmd struct { struct
30 *exec.Cmd argument
32 Environment *Environment
33 Sandbox Sandbox
35 ctx Context
36 config Config
37 name string
39 started time.Time
56 func (c *Cmd) prepare() {
68 func (c *Cmd) report() {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/vcs/
Dvcs.go36 type Cmd struct { struct
37 Name string
38 Cmd string // name of binary to invoke command argument
39 RootNames []rootName // filename and mode indicating the root of a checkout directory
41 CreateCmd []string // commands to download a fresh copy of a repository
42 DownloadCmd []string // commands to download updates into an existing repository
44 TagCmd []tagCmd // commands to list tags
45 TagLookupCmd []tagCmd // commands to lookup tags before running tagSyncCmd
46 TagSyncCmd []string // commands to sync to specific tag
47 TagSyncDefault []string // commands to sync to default tag
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/argh/tests/
Dlib.rs284 struct Cmd { in multiline_doc_comment_description() struct
290 _s: bool, in multiline_doc_comment_description()
310 struct Cmd { in explicit_long_value_for_option() struct
313 x: u8, in explicit_long_value_for_option()
334 struct Cmd { in default_number() struct
337 x: u8, in default_number()
353 struct Cmd { in default_function() struct
356 msg: String, in default_function()
367 struct Cmd { in missing_option_value() struct
370 _msg: String, in missing_option_value()
[all …]
Dargs_info_tests.rs116 struct Cmd { in args_info_test_multiline_doc_comment() struct
122 _s: bool, in args_info_test_multiline_doc_comment()
839 struct Cmd { in hidden_help_attribute() struct
842 _one: String, in hidden_help_attribute()
845 _two: String, in hidden_help_attribute()
848 _three: String, in hidden_help_attribute()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/commands/
Ddynamic_state.rs1730 struct Cmd { struct
1731 constants: [f32; 4],
1734 impl Command for Cmd { implementation
1752 struct Cmd<I> { in set_color_write_enable() struct
1753 enables: Mutex<Option<I>>, in set_color_write_enable()
1756 impl<I> Command for Cmd<I> in set_color_write_enable() implementation
1779 struct Cmd { in set_cull_mode() struct
1780 cull_mode: CullMode, in set_cull_mode()
1783 impl Command for Cmd { in set_cull_mode() implementation
1800 struct Cmd { in set_depth_bias() struct
[all …]
Dbind_push.rs730 struct Cmd { in bind_index_buffer() struct
731 buffer: Subbuffer<[u8]>, in bind_index_buffer()
732 index_type: IndexType, in bind_index_buffer()
735 impl Command for Cmd { in bind_index_buffer() implementation
752 struct Cmd { in bind_pipeline_compute() struct
753 pipeline: Arc<ComputePipeline>, in bind_pipeline_compute()
756 impl Command for Cmd { in bind_pipeline_compute() implementation
773 struct Cmd { in bind_pipeline_graphics() struct
774 pipeline: Arc<GraphicsPipeline>, in bind_pipeline_graphics()
777 impl Command for Cmd { in bind_pipeline_graphics() implementation
[all …]
Dquery.rs630 struct Cmd { in begin_query() struct
631 query_pool: Arc<QueryPool>, in begin_query()
632 query: u32, in begin_query()
633 flags: QueryControlFlags, in begin_query()
636 impl Command for Cmd { in begin_query() implementation
656 struct Cmd { in end_query() struct
657 query_pool: Arc<QueryPool>, in end_query()
658 query: u32, in end_query()
661 impl Command for Cmd { in end_query() implementation
682 struct Cmd { in write_timestamp() struct
[all …]
Dpipeline.rs1673 struct Cmd { struct
1674 group_counts: [u32; 3],
1677 impl Command for Cmd { implementation
1718 struct Cmd { in dispatch_indirect() struct
1719 indirect_buffer: Subbuffer<[DispatchIndirectCommand]>, in dispatch_indirect()
1722 impl Command for Cmd { in dispatch_indirect() implementation
1772 struct Cmd { in draw() struct
1773 vertex_count: u32, in draw()
1774 instance_count: u32, in draw()
1775 first_vertex: u32, in draw()
[all …]
Dsync.rs29 struct Cmd { in set_event() struct
30 event: Arc<Event>, in set_event()
31 dependency_info: DependencyInfo, in set_event()
34 impl Command for Cmd { in set_event() implementation
56 struct Cmd { in wait_events() struct
57 events: SmallVec<[(Arc<Event>, DependencyInfo); 4]>, in wait_events()
60 impl Command for Cmd { in wait_events() implementation
82 struct Cmd { in reset_event() struct
83 event: Arc<Event>, in reset_event()
84 stages: PipelineStages, in reset_event()
[all …]
Dclear.rs542 struct Cmd { in clear_color_image() struct
543 clear_info: ClearColorImageInfo, in clear_color_image()
546 impl Command for Cmd { in clear_color_image() implementation
614 struct Cmd { in clear_depth_stencil_image() struct
615 clear_info: ClearDepthStencilImageInfo, in clear_depth_stencil_image()
618 impl Command for Cmd { in clear_depth_stencil_image() implementation
684 struct Cmd { in fill_buffer() struct
685 dst_buffer: Subbuffer<[u32]>, in fill_buffer()
686 data: u32, in fill_buffer()
689 impl Command for Cmd { in fill_buffer() implementation
[all …]
Drender_pass.rs1470 struct Cmd { in begin_render_pass() struct
1471 render_pass_begin_info: RenderPassBeginInfo, in begin_render_pass()
1472 contents: SubpassContents, in begin_render_pass()
1475 impl Command for Cmd { in begin_render_pass() implementation
1551 struct Cmd { in next_subpass() struct
1552 contents: SubpassContents, in next_subpass()
1555 impl Command for Cmd { in next_subpass() implementation
1571 struct Cmd; in end_render_pass() struct
1573 impl Command for Cmd { in end_render_pass() implementation
1594 struct Cmd { in begin_rendering() struct
[all …]
Ddebug.rs187 struct Cmd { in begin_debug_utils_label() struct
188 label_info: DebugUtilsLabel, in begin_debug_utils_label()
191 impl Command for Cmd { in begin_debug_utils_label() implementation
214 struct Cmd {} in end_debug_utils_label() struct
216 impl Command for Cmd { in end_debug_utils_label() implementation
236 struct Cmd { in insert_debug_utils_label() struct
237 label_info: DebugUtilsLabel, in insert_debug_utils_label()
240 impl Command for Cmd { in insert_debug_utils_label() implementation
Dcopy.rs2593 struct Cmd { in copy_buffer() struct
2594 copy_buffer_info: CopyBufferInfo, in copy_buffer()
2597 impl Command for Cmd { in copy_buffer() implementation
2687 struct Cmd { in copy_image() struct
2688 copy_image_info: CopyImageInfo, in copy_image()
2691 impl Command for Cmd { in copy_image() implementation
2789 struct Cmd { in copy_buffer_to_image() struct
2790 copy_buffer_to_image_info: CopyBufferToImageInfo, in copy_buffer_to_image()
2793 impl Command for Cmd { in copy_buffer_to_image() implementation
2892 struct Cmd { in copy_image_to_buffer() struct
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/argh/tests/ui/duplicate-name/
Dduplicate-short-name.rs3 struct Cmd { struct
6 foo1: u32,
10 foo2: u32,
14 bar1: u32,
18 bar2: u32,
Dduplicate-long-name.rs3 struct Cmd { struct
6 foo1: u32,
10 foo2: u32,
14 bar1: u32,
18 bar2: u32,
/aosp_15_r20/external/rust/android-crates-io/crates/argh/tests/ui/bad-long-names/
Dbad-long-names.rs3 struct Cmd { struct
6 привет: bool,
9 XMLHTTPRequest: bool,
12 ok: bool,
/aosp_15_r20/packages/modules/StatsD/lib/libstatssocket/
Dstats_buffer_writer_queue_impl.h39 struct Cmd { struct
45 virtual bool handleCommand(const Cmd& cmd) const; argument
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/link/internal/ld/
Dmacho_combine_dwarf.go20 Cmd macho.LoadCmd member
25 Cmd macho.LoadCmd member
35 Cmd macho.LoadCmd member
41 Cmd macho.LoadCmd member
48 Cmd macho.LoadCmd member
/aosp_15_r20/external/intel-media-driver/media_driver/agnostic/Xe_M/Xe_XPM_plus/hw/vdbox/
H A Dmhw_vdbox_huc_hwcmd_xe_xpm_plus.h45 struct Cmd struct
54 static uint32_t GetOpLength(uint32_t uiLength) { return __CODEGEN_OP_LENGTH(uiLength); } in GetOpLength()
63 struct MEMORYADDRESSATTRIBUTES_CMD
128 struct SPLITBASEADDRESS64BYTEALIGNED_CMD
159 struct SPLITBASEADDRESS4KBYTEALIGNED_CMD
194 struct HUC_PIPE_MODE_SELECT_CMD
311 struct HUC_IMEM_STATE_CMD
422 struct HUC_DMEM_STATE_CMD
507 struct HUC_CFG_STATE_CMD
577 struct HUC_VIRTUAL_ADDR_REGION_CMD
[all …]
/aosp_15_r20/external/intel-media-driver/media_driver/agnostic/Xe_M/Xe_HPM/hw/vdbox/
H A Dmhw_vdbox_huc_hwcmd_xe_hpm.h45 struct Cmd struct
54 static uint32_t GetOpLength(uint32_t uiLength) { return __CODEGEN_OP_LENGTH(uiLength); } in GetOpLength()
63 struct MEMORYADDRESSATTRIBUTES_CMD
128 struct SPLITBASEADDRESS64BYTEALIGNED_CMD
159 struct SPLITBASEADDRESS4KBYTEALIGNED_CMD
194 struct HUC_PIPE_MODE_SELECT_CMD
311 struct HUC_IMEM_STATE_CMD
422 struct HUC_DMEM_STATE_CMD
507 struct HUC_CFG_STATE_CMD
577 struct HUC_VIRTUAL_ADDR_REGION_CMD
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/argh/tests/ui/conflicting-tails/
Dpositional-and-greedy.rs3 struct Cmd { struct
6 positional: Vec<String>,
10 remainder: Vec<String>,
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/dist/
Dexec.go13 func setDir(cmd *exec.Cmd, dir string) {
22 func setEnv(cmd *exec.Cmd, key, value string) {
27 func unsetEnv(cmd *exec.Cmd, key string) {
/aosp_15_r20/packages/modules/StatsD/lib/libstatspull/
Dstats_pull_atom_callback.cpp284 struct Cmd { struct in CallbackOperationsHandler
285 enum Type { CMD_REGISTER, CMD_UNREGISTER };
287 Type type;
288 int atomTag;
289 std::shared_ptr<StatsPullAtomCallbackInternal> callback;
/aosp_15_r20/external/intel-media-driver/media_driver/media_softlet/agnostic/Xe_M/Xe_XPM_base/hw/
H A Dmhw_mi_hwcmd_xe_xpm_base.h43 struct Cmd struct
52 static uint32_t GetOpLength(uint32_t uiLength) { return __CODEGEN_OP_LENGTH(uiLength); } in GetOpLength()
61 struct MI_BATCH_BUFFER_END_CMD
112 struct MI_NOOP_CMD
179 struct MI_ARB_CHECK_CMD
296 struct MI_LOAD_REGISTER_IMM_CMD
435 struct MI_LOAD_REGISTER_MEM_CMD
579 struct MI_LOAD_REGISTER_REG_CMD
752 struct MI_STORE_REGISTER_MEM_CMD
887 struct MI_BATCH_BUFFER_START_CMD
[all …]

12345678