Searched refs:cmds (Results 1 - 25 of 54) sorted by relevance

123

/external/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
33 assert len(cmds) != 0
38 cmds = cdb.getAllCompileCommands()
39 assert len(cmds) == 3
51 for i in range(len(cmds)):
52 assert cmds[i].directory == expected[i]['wd']
53 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
59 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
60 assert len(cmds) == 1
61 assert cmds[
[all...]
/external/vboot_reference/cgpt/
H A Dcgpt.c30 } cmds[] = { variable in typeref:struct:__anon16848
49 for (i = 0; i < sizeof(cmds)/sizeof(cmds[0]); ++i) {
50 printf(" %-15s %s\n", cmds[i].name, cmds[i].comment);
76 for (i = 0; command && i < sizeof(cmds)/sizeof(cmds[0]); ++i) {
78 if (0 == strcmp(cmds[i].name, command)) {
84 else if (0 == strncmp(cmds[i].name, command, strlen(command))) {
91 return cmds[match_inde
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Dhelp.c8 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len) argument
16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
20 static void clean_cmdnames(struct cmdnames *cmds) argument
24 for (i = 0; i < cmds->cnt; ++i)
25 free(cmds->names[i]);
26 free(cmds
38 uniq(struct cmdnames *cmds) argument
52 exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) argument
74 pretty_print_string_list(struct cmdnames *cmds, int longest) argument
117 list_commands_in_dir(struct cmdnames *cmds, const char *path, const char *prefix) argument
258 add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) argument
[all...]
H A Dhelp.h22 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
24 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
/external/libcxx/buildcmds/
H A Dbuildcmdscc10 | perl -ne 's/\S+\.o\b/%OUT%/; print' > $DIR/cxx.cmds
13 | perl -ne 's/-o\s+\S+\b/-o %OUT%/; print' > $DIR/link.cmds
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds,
41 vgu_append_float_coords(VGPath path, const VGubyte *cmds, VGint num_cmds, const VGfloat *coords, VGint num_coords) argument
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
[all...]
H A Dstroker.c76 const VGubyte *cmds; member in struct:stroke_iterator
151 return it->cmds[it->position];
160 prev_cmd = it->cmds[it->position + 1];
197 struct array *cmds,
200 itr->cmds = (VGubyte*)cmds->data;
201 itr->num_commands = cmds->num_elements;
208 struct array *cmds,
211 stroke_itr_common_init(itr, cmds, coords);
222 struct array *cmds,
196 stroke_itr_common_init(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
207 stroke_forward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
221 stroke_backward_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
331 stroke_flat_iterator(struct stroke_iterator *itr, struct array *cmds, struct array *coords) argument
552 VGubyte cmds = VG_MOVE_TO_ABS; local
569 VGubyte cmds = VG_LINE_TO_ABS; local
587 VGubyte cmds = VG_CUBIC_TO_ABS; local
[all...]
/external/toybox/toys/other/
H A Dblockdev.c41 int cmds[] = {BLKRRPART, BLKFLSBUF, BLKGETSIZE64, BLKGETSIZE, BLKGETSIZE64, local
63 xioctl(fd, cmds[i], &val);
/external/libedit/src/
H A Dparse.c63 } cmds[] = { variable in typeref:struct:__anon7980
125 for (i = 0; cmds[i].name != NULL; i++)
126 if (Strcmp(cmds[i].name, ptr) == 0) {
127 i = (*cmds[i].func) (el, argc, argv);
/external/blktrace/btt/
H A Dbno_plot.py44 cmds = """
109 fo = open('%s/plot.cmds' % tmpdir, 'w')
110 print >>fo, cmds
117 cmd = '/usr/bin/gnuplot %s/plot.cmds -' % tmpdir
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.h33 unsigned *cmds; member in struct:nouveau_decoder
50 dec->cmds[dec->ofs++] = data;
/external/selinux/policycoreutils/sandbox/
H A Dsandbox347 self.__options, cmds = parser.parse_args()
368 if len(cmds) > 0:
378 if len(cmds) == 0:
380 cmds[0] = fullpath(cmds[0])
381 if not os.access(cmds[0], os.X_OK):
382 self.usage(_("%s is not an executable") % cmds[0] )
384 self.__cmds = cmds
386 for f in cmds:
424 cmds
[all...]
/external/linux-tools-perf/src/tools/perf/Documentation/
H A DMakefile238 _cmds_txt = cmds-ancillaryinterrogators.txt \
239 cmds-ancillarymanipulators.txt \
240 cmds-mainporcelain.txt \
241 cmds-plumbinginterrogators.txt \
242 cmds-plumbingmanipulators.txt \
243 cmds-synchingrepositories.txt \
244 cmds-synchelpers.txt \
245 cmds-purehelpers.txt \
246 cmds-foreignscminterface.txt
/external/selinux/policycoreutils/scripts/
H A Dchcat378 gopts, cmds = getopt.getopt(sys.argv[1:],
395 if list_ind == 0 and len(cmds) < 1:
405 sys.exit(chcat_replace(["s0"], cmds, login_ind))
409 sys.exit(listusercats(cmds))
411 if len(cmds) > 0:
415 if len(cmds) < 2:
419 cats = cmds[0].split(",")
422 objects = cmds[1:]
/external/strace/
H A Daio.c78 } cmds[] = { local
90 if (cmd < ARRAY_SIZE(cmds)) {
91 tprints(cmds[cmd].name);
92 return cmds[cmd].sub;
/external/libdrm/freedreno/msm/
H A Dmsm_ringbuffer.c49 struct drm_msm_gem_submit_cmd *cmds; member in struct:msm_ringbuffer
131 cmd = &msm_ring->cmds[i];
142 uint32_t idx = APPEND(msm_ring, cmds);
145 cmd = &msm_ring->cmds[idx];
209 /* needs to be after get_cmd() as that could create bos/cmds table: */
212 req.cmds = VOID2U64(msm_ring->cmds),
217 struct drm_msm_gem_submit_cmd *cmd = &msm_ring->cmds[i];
H A Dmsm_drm.h182 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
190 uint64_t __user cmds; /* in, ptr to array of submit_cmd's */ member in struct:drm_msm_gem_submit
/external/iproute2/ip/
H A Dip.c65 } cmds[] = { variable in typeref:struct:cmd
94 for (c = cmds; c->cmd; ++c) {
/external/tcpdump/
H A Dprint-telnet.c71 static const char *cmds[] = { variable
197 (void)printf(" %s", STR_OR_ID(c, cmds));
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py175 cmds = [ variable
218 for id, header, body, footer in cmds:
326 for id, header, body, footer in cmds:
/external/fio/engines/
H A Dbinject.c23 struct b_user_cmd *cmds; member in struct:binject_data
99 void *buf = bd->cmds;
383 free(bd->cmds);
397 bd->cmds = malloc(td->o.iodepth * sizeof(struct b_user_cmd));
398 memset(bd->cmds, 0, td->o.iodepth * sizeof(struct b_user_cmd));
H A Dsg.c24 struct sgio_cmd *cmds; member in struct:sgio_data
36 struct sgio_cmd *sc = &sd->cmds[io_u->index];
315 free(sd->cmds);
329 sd->cmds = malloc(td->o.iodepth * sizeof(struct sgio_cmd));
330 memset(sd->cmds, 0, td->o.iodepth * sizeof(struct sgio_cmd));
/external/jpeg/
H A Dltmain.sh1030 eval cmds=\"$archive_cmds\"
1032 for cmd in $cmds; do
1107 eval cmds=\"$reload_cmds\"
1109 for cmd in $cmds; do
1131 eval cmds=\"$reload_cmds\"
1133 for cmd in $cmds; do
1546 eval cmds=\"$old_archive_from_new_cmds\"
1548 eval cmds=\"$old_archive_cmds\"
1551 for cmd in $cmds; do
1834 eval cmds
[all...]
/external/kernel-headers/original/uapi/drm/
H A Dmsm_drm.h175 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
183 uint64_t __user cmds; /* in, ptr to array of submit_cmd's */ member in struct:drm_msm_gem_submit
/external/openssh/
H A Dsftp.c179 static const struct CMD cmds[] = { variable in typeref:struct:CMD
1237 for (i = 0; cmds[i].c != NULL; i++) {
1238 if (argv[0] != NULL && strcasecmp(cmds[i].c, argv[0]) == 0)
1241 cmdnum = cmds[i].n;
1242 cmd = cmds[i].c;
1736 list = xcalloc((sizeof(cmds) / sizeof(*cmds)) + 1, sizeof(char *));
1740 for (y = 0; cmds[y].c; y++)
1741 list[count++] = xstrdup(cmds[y].c);
1754 for (y = 0; cmds[
[all...]

Completed in 1834 milliseconds

123