Home
last modified time | relevance | path

Searched refs:cmd_list (Results 1 – 25 of 27) sorted by relevance

12

/external/webrtc/tools_webrtc/ios/
Dmerge_ios_libs.py95 cmd_list = ['libtool', '-static', '-v', '-o',
97 libtoolout = subprocess.Popen(cmd_list, stderr=subprocess.PIPE, env=env)
106 for i in range(len(cmd_list) - 1):
107 if cmd_list[i] == '-o' and cmd_list[i+1].endswith('.a'):
108 os.utime(cmd_list[i+1], None)
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
DTestBreakpointLocations.py107 cmd_list = lldb.SBStringList()
108 bkpt.GetCommandLineCommands(cmd_list)
110 self.assertEqual(cmd_list.GetSize() , list_size, "Added the right number of commands")
112 …self.assertEqual(str_list.GetStringAtIndex(i), cmd_list.GetStringAtIndex(i), "Mismatched commands.…
129 self.assertEqual(cmd_list.GetSize() , list_size, "Added the right number of commands")
131 …self.assertEqual(str_list.GetStringAtIndex(i), cmd_list.GetStringAtIndex(i), "Mismatched commands.…
/external/mesa3d/src/intel/tools/imgui/
Dimgui_impl_opengl3.cpp177 const ImDrawList* cmd_list = draw_data->CmdLists[n]; in ImGui_ImplOpenGL3_RenderDrawData() local
181 …lBufferData(GL_ARRAY_BUFFER, (GLsizeiptr)cmd_list->VtxBuffer.Size * sizeof(ImDrawVert), (const GLv… in ImGui_ImplOpenGL3_RenderDrawData()
184 …Data(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx), (const GLv… in ImGui_ImplOpenGL3_RenderDrawData()
186 for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) in ImGui_ImplOpenGL3_RenderDrawData()
188 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL3_RenderDrawData()
192 pcmd->UserCallback(cmd_list, pcmd); in ImGui_ImplOpenGL3_RenderDrawData()
/external/webrtc/tools_webrtc/network_emulator/
Dnetwork_emulator.py180 cmd_list = ipfw_command[:] + [str(x) for x in command]
181 cmd_string = ' '.join(cmd_list)
183 process = subprocess.Popen(cmd_list, stdout=subprocess.PIPE,
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
DTestBreakpointNames.py89 self.cmd_list = lldb.SBStringList()
90 self.cmd_list.AppendString("frame var")
91 self.cmd_list.AppendString("bt")
199 … self.assertEqual(set_cmds.GetSize(), self.cmd_list.GetSize(), "Size of command line commands")
201 …self.assertEqual(self.cmd_list.GetStringAtIndex(idx), set_cmds.GetStringAtIndex(idx), "Command %d"…
227 bp_name.SetCommandLineCommands(self.cmd_list)
273 for cmd in self.cmd_list:
/external/autotest/client/site_tests/platform_Mosys/
Dplatform_Mosys.py30 cmd_list = utils.system_output('mosys -tv')
31 for line in cmd_list.splitlines():
/external/libdrm/freedreno/msm/
Dmsm_ringbuffer.c86 struct list_head cmd_list; member
123 assert(!LIST_IS_EMPTY(&msm_ring->cmd_list)); in current_cmd()
124 return LIST_LAST_ENTRY(&msm_ring->cmd_list, struct msm_cmd, list); in current_cmd()
191 list_addtail(&cmd->list, &msm_ring->cmd_list); in ring_cmd_new()
325 LIST_FOR_EACH_ENTRY_SAFE(cmd, tmp, &msm_ring->cmd_list, list) { in delete_cmds()
623 LIST_FOR_EACH_ENTRY(cmd, &msm_target->cmd_list, list) { in msm_ringbuffer_emit_reloc_ring()
710 list_inithead(&msm_ring->cmd_list); in msm_ringbuffer_new()
/external/e2fsprogs/misc/
De4crypt.c827 const struct cmd_desc cmd_list[] = { variable
842 for (p = cmd_list; p->cmd_name; p++) { in do_help()
856 for (p = cmd_list; p->cmd_name; p++) { in do_help()
871 do_help(argc, argv, cmd_list); in main()
874 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main()
881 do_help(1, argv, cmd_list); in main()
/external/f2fs-tools/tools/
Df2fscrypt.c868 const struct cmd_desc cmd_list[] = { variable
882 for (p = cmd_list; p->cmd_name; p++) { in do_help()
896 for (p = cmd_list; p->cmd_name; p++) { in do_help()
911 do_help(argc, argv, cmd_list); in main()
914 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main()
921 do_help(1, argv, cmd_list); in main()
/external/tensorflow/tensorflow/tools/tensorflow_builder/config_detector/
Dconfig_detector.py346 cmd_list = cmds_all[PLATFORM.lower()][key]
347 for i, cmd in enumerate(cmd_list):
358 if i == len(cmd_list) - 1:
/external/autotest/client/common_lib/
Dpackages.py836 cmd_list = ['tar', '-cf', temp_path, '-C', src_dir]
838 cmd_list.append('--use-compress-prog=pbzip2')
840 cmd_list.append('-j')
842 cmd_list.append(exclude_string)
845 utils.system(' '.join(cmd_list))
/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
DTestBreakpointSerialization.py256 cmd_list = lldb.SBStringList()
257 cmd_list.AppendString("frame var")
258 cmd_list.AppendString("thread backtrace")
260 bkpt.SetCommandLineCommands(cmd_list)
/external/f2fs-tools/tools/f2fs_io/
Df2fs_io.c1176 const struct cmd_desc cmd_list[] = { variable
1209 for (p = cmd_list; p->cmd_name; p++) { in do_help()
1223 for (p = cmd_list; p->cmd_name; p++) { in do_help()
1274 do_help(argc, argv, cmd_list); in main()
1277 for (cmd = cmd_list; cmd->cmd_name; cmd++) { in main()
1284 do_help(1, argv, cmd_list); in main()
/external/autotest/client/site_tests/graphics_dEQP/scripts/
Dprocess_logs.py40 def execute(cmd_list): argument
41 sproc = subprocess.Popen(cmd_list, stdout=subprocess.PIPE)
/external/python/cpython2/Lib/test/
Dtest_poplib.py82 def cmd_list(self, arg): member in DummyPOP3Handler
89 cmd_uidl = cmd_list
Dtest_ftplib.py197 def cmd_list(self, arg): member in DummyFTPHandler
/external/mesa3d/src/vulkan/overlay-layer/
Doverlay.cpp1238 const ImDrawList* cmd_list = draw_data->CmdLists[n]; in render_swapchain_display() local
1239 memcpy(vtx_dst, cmd_list->VtxBuffer.Data, cmd_list->VtxBuffer.Size * sizeof(ImDrawVert)); in render_swapchain_display()
1240 memcpy(idx_dst, cmd_list->IdxBuffer.Data, cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx)); in render_swapchain_display()
1241 vtx_dst += cmd_list->VtxBuffer.Size; in render_swapchain_display()
1242 idx_dst += cmd_list->IdxBuffer.Size; in render_swapchain_display()
1303 const ImDrawList* cmd_list = draw_data->CmdLists[n]; in render_swapchain_display() local
1304 for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) in render_swapchain_display()
1306 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in render_swapchain_display()
1321 vtx_offset += cmd_list->VtxBuffer.Size; in render_swapchain_display()
/external/autotest/server/cros/tradefed/
Dgenerate_controlfiles_common.py852 cmd_list = [tradefed, 'list', 'modules']
856 tradefed_output = subprocess.check_output(cmd_list, stdin=devnull)
859 p = subprocess.Popen(cmd_list, stdout=subprocess.PIPE)
/external/mesa3d/src/imgui/
Dimgui_draw.cpp1278 ImDrawList* cmd_list = CmdLists[i]; in DeIndexAllBuffers() local
1279 if (cmd_list->IdxBuffer.empty()) in DeIndexAllBuffers()
1281 new_vtx_buffer.resize(cmd_list->IdxBuffer.Size); in DeIndexAllBuffers()
1282 for (int j = 0; j < cmd_list->IdxBuffer.Size; j++) in DeIndexAllBuffers()
1283 new_vtx_buffer[j] = cmd_list->VtxBuffer[cmd_list->IdxBuffer[j]]; in DeIndexAllBuffers()
1284 cmd_list->VtxBuffer.swap(new_vtx_buffer); in DeIndexAllBuffers()
1285 cmd_list->IdxBuffer.resize(0); in DeIndexAllBuffers()
1286 TotalVtxCount += cmd_list->VtxBuffer.Size; in DeIndexAllBuffers()
1297 ImDrawList* cmd_list = CmdLists[i]; in ScaleClipRects() local
1298 for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) in ScaleClipRects()
[all …]
/external/vulkan-validation-layers/scripts/
Dobject_tracker_generator.py217 self.cmd_list = [] # list of commands processed to maintain ordering
901 self.cmd_list.append(cmdname)
906 for cmdname in self.cmd_list:
/external/python/cpython3/Lib/test/
Dtest_poplib.py100 def cmd_list(self, arg): member in DummyPOP3Handler
107 cmd_uidl = cmd_list
Dtest_ftplib.py233 def cmd_list(self, arg): member in DummyFTPHandler
/external/iptables/iptables/
Dnft.h108 struct list_head cmd_list; member
Dnft-cmd.c47 list_add_tail(&cmd->head, &h->cmd_list); in nft_cmd_new()
Dnft.c891 INIT_LIST_HEAD(&h->cmd_list); in nft_init()
901 list_for_each_safe(pos, n, &h->cmd_list) in nft_fini()
3052 list_for_each_entry_safe(cmd, next, &h->cmd_list, head) { in nft_prepare()
3175 list_for_each_entry_safe(cmd, next, &h->cmd_list, head) in nft_abort()

12