HomeSort by relevance Sort by last modified time
    Searched refs:cmds (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /external/qemu/distrib/jpeg-6b/
ltmain.sh 1030 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
    [all...]
  /ndk/sources/host-tools/make-3.81/
implicit.c 314 if (rule->deps != 0 && rule->cmds == 0)
403 if (rule->deps == 0 && rule->cmds == 0)
835 a target; therefore we can assume that the deps and cmds
850 f->cmds = imf->cmds;
934 file->cmds = rule->cmds;
expand.c 464 if (file->cmds && file->cmds->fileinfo.filenm)
465 reading_file = &file->cmds->fileinfo;
filedef.h 32 struct commands *cmds; /* Commands to execute for this target. */ member in struct:file
33 int command_flags; /* Flags OR'd in for cmds; see commands.h. */
job.c 881 for (i = 0; i < child->file->cmds->ncommand_lines; ++i)
993 | child->file->cmds->lines_flags[child->command_line - 1]);
1017 child->file->cmds->lines_flags[child->command_line - 1]
1487 register struct commands *cmds = file->cmds; local
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper_test.cc 88 CommandBufferEntry* cmds = helper_->GetSpace(arg_count + 1); local
90 cmds[put++].value_header = header;
92 cmds[put++] = args[ii];
gles2_implementation_impl_autogen.h 118 typedef cmds::CheckFramebufferStatus::Result Result;
495 typedef cmds::GetBooleanv::Result Result;
521 typedef cmds::GetBufferParameteriv::Result Result;
545 typedef cmds::GetFloatv::Result Result;
572 typedef cmds::GetFramebufferAttachmentParameteriv::Result Result;
597 typedef cmds::GetIntegerv::Result Result;
623 typedef cmds::GetProgramiv::Result Result;
677 typedef cmds::GetRenderbufferParameteriv::Result Result;
703 typedef cmds::GetShaderiv::Result Result;
784 typedef cmds::GetTexParameterfv::Result Result
    [all...]
gles2_implementation.cc 441 typedef cmds::GetError::Result Result;
626 typedef cmds::IsEnabled::Result Result;
771 typedef cmds::GetMaxValueInBufferCHROMIUM::Result Result;
    [all...]
  /external/openssh/
sftp.c 164 static const struct CMD cmds[] = { variable in typeref:struct:CMD
1143 for (i = 0; cmds[i].c != NULL; i++) {
1144 if (strcasecmp(cmds[i].c, argv[0]) == 0)
1147 cmdnum = cmds[i].n;
1148 cmd = cmds[i].c;
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_main.py 370 cmds = [fn[3:] for fn in dir(sys.modules[__name__]) if fn.startswith('CMD')]
372 cmds = filter(lambda fn: not getattr(Command(fn), 'hide', 0), cmds)
376 for fn in cmds]))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_dist.py 190 cmds = dist.get_command_packages()
191 self.assertEqual(cmds, ['distutils.command'])
196 cmds = dist.get_command_packages()
197 self.assertEqual(cmds, ['distutils.command', 'one', 'two'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_dist.py 190 cmds = dist.get_command_packages()
191 self.assertEqual(cmds, ['distutils.command'])
196 cmds = dist.get_command_packages()
197 self.assertEqual(cmds, ['distutils.command', 'one', 'two'])
  /hardware/qcom/audio/legacy/libalsa-intf/
alsaucm_test.c 70 static struct cmd cmds[] = { variable in typeref:struct:cmd
177 for (cmd = cmds; cmd->cmd_str != NULL; cmd++) {
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 239 cmds::name::kArgFlags, \
240 sizeof(cmds::name) / sizeof(CommandBufferEntry) - 1, }, /* NOLINT */ \
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 342 def print_topics(self, header, cmds, cmdlen, maxcol):
343 if cmds:
347 self.columnize(cmds, maxcol-1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 342 def print_topics(self, header, cmds, cmdlen, maxcol):
343 if cmds:
347 self.columnize(cmds, maxcol-1)
  /external/llvm/utils/lit/lit/
TestRunner.py 247 cmds = []
250 cmds.append(ShUtil.ShParser(ln, litConfig.isWindows,
255 cmd = cmds[0]
256 for c in cmds[1:]:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 328 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP] variable in class:OptionTests
341 self.assertIn(cmd[0], self.cmds)
354 for cmd in self.cmds:
359 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 328 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP] variable in class:OptionTests
341 self.assertIn(cmd[0], self.cmds)
354 for cmd in self.cmds:
359 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_video.c 38 if (dec->cmds)
50 dec->cmds = dec->cmd_bo->map;
73 if (!dec->cmds)
99 dec->cmds = dec->data = NULL;
  /external/libppp/src/
command.c 1029 FindCommand(struct cmdtab const *cmds, const char *str, int *pmatch)
1038 while (cmds->func) {
1039 if (cmds->name && strncasecmp(str, cmds->name, len) == 0) {
1040 if (cmds->name[len] == '\0') {
1042 return cmds;
1045 found = cmds;
1046 } else if (cmds->alias && strncasecmp(str, cmds->alias, len) == 0) {
1047 if (cmds->alias[len] == '\0')
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 38 if (dec->cmds)
50 dec->cmds = dec->cmd_bo->map;
73 if (!dec->cmds)
99 dec->cmds = dec->data = NULL;
  /external/openssh/regress/
Makefile 41 sftp-cmds \
  /external/chromium/sdch/open-vcdiff/
ltmain.sh     [all...]
  /external/chromium/third_party/libevent/
ltmain.sh     [all...]

Completed in 617 milliseconds

1 23 4 5