Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 6725) sorted by relevance

12345678910>>...269

/external/toybox/toys/posix/
Dsed.c244 static void *get_regex(void *command, int offset) in get_regex() argument
251 return TT.lastregex = offset+(char *)command; in get_regex()
264 struct sedcmd *command; in sed_line() local
287 command = TT.restart ? ((struct sedcmd *)TT.restart)-1 : (void *)TT.pattern; in sed_line()
290 while (command) { in sed_line()
291 char *str, c = command->c; in sed_line()
294 if (*command->lmatch || *command->rmatch) { in sed_line()
299 if (command->hit) { in sed_line()
300 if (!(lm = command->lmatch[1])) { in sed_line()
301 if (!command->rmatch[1]) command->hit = 0; in sed_line()
[all …]
/external/libusb/libusb/os/
Dhaiku_usb_backend.cpp71 usb_raw_command command; in Do() local
72 command.control.request_type = setup->bmRequestType; in Do()
73 command.control.request = setup->bRequest; in Do()
74 command.control.value = setup->wValue; in Do()
75 command.control.index = setup->wIndex; in Do()
76 command.control.length = setup->wLength; in Do()
77 command.control.data = fLibusbTransfer->buffer + LIBUSB_CONTROL_SETUP_SIZE; in Do()
80 if (ioctl(fRawFD, B_USB_RAW_COMMAND_CONTROL_TRANSFER, &command, sizeof(command)) || in Do()
81 command.control.status != B_USB_RAW_STATUS_SUCCESS) { in Do()
86 fUsbiTransfer->transferred = command.control.length; in Do()
[all …]
/external/cpuinfo/test/dmesg/
Dpadcod-10.1.log270 <6>[ 7.019838] init: command 'insmod' r=0
271 <6>[ 7.020190] init: command 'symlink' r=0
272 <6>[ 7.020278] init: command 'symlink' r=0
273 <6>[ 7.020338] init: command 'symlink' r=0
274 <6>[ 7.020566] init: command 'mkdir' r=0
276 <6>[ 7.100330] init: command 'mount' r=0
277 <6>[ 7.100669] init: command 'mkdir' r=0
279 <6>[ 7.100948] init: command 'mount' r=0
280 <6>[ 7.101191] init: command 'mkdir' r=0
281 <6>[ 7.101336] init: command 'mount' r=-1
[all …]
/external/python/setuptools/setuptools.egg-info/
Dentry_points.txt2 easy_install = setuptools.command.easy_install:main
3 easy_install-3.6 = setuptools.command.easy_install:main
6 alias = setuptools.command.alias:alias
7 bdist_egg = setuptools.command.bdist_egg:bdist_egg
8 bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
9 bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
10 build_clib = setuptools.command.build_clib:build_clib
11 build_ext = setuptools.command.build_ext:build_ext
12 build_py = setuptools.command.build_py:build_py
13 develop = setuptools.command.develop:develop
[all …]
/external/oj-libjdwp/src/share/back/
DeventHelper.c133 commandSize(HelperCommand *command) in commandSize() argument
136 if (command->commandKind == COMMAND_REPORT_EVENT_COMPOSITE) { in commandSize()
143 (command->u.reportEventComposite.eventCount - 1)); in commandSize()
149 freeCommand(HelperCommand *command) in freeCommand() argument
151 if ( command == NULL ) in freeCommand()
153 jvmtiDeallocate(command); in freeCommand()
157 enqueueCommand(HelperCommand *command, in enqueueCommand() argument
162 jint size = commandSize(command); in enqueueCommand()
164 command->done = JNI_FALSE; in enqueueCommand()
165 command->waiting = wait; in enqueueCommand()
[all …]
/external/autotest/server/site_tests/firmware_Mosys/
Dfirmware_Mosys.py48 def check_for_errors(self, output, command): argument
58 self._tag_failure(command)
62 def run_cmd(self, command): argument
70 logging.info('Execute %s', command)
72 command, True)
76 def check_ec_version(self, command, exp_ec_version): argument
101 self._tag_failure(command)
103 self._tag_failure(command)
106 def check_pd_version(self, command, exp_pd_version): argument
131 self._tag_failure(command)
[all …]
/external/python/cpython2/Doc/distutils/
Dcommandref.rst7 .. % \section{Building modules: the \protect\command{build} command family}
9 .. % \subsubsection{\protect\command{build}}
11 .. % \subsubsection{\protect\command{build\_py}}
13 .. % \subsubsection{\protect\command{build\_ext}}
15 .. % \subsubsection{\protect\command{build\_clib}}
21 Installing modules: the :command:`install` command family
24 The install command ensures that the build commands have been run and then runs
25 the subcommands :command:`install_lib`, :command:`install_data` and
26 :command:`install_scripts`.
28 .. % \subsubsection{\protect\command{install\_lib}}
[all …]
/external/u-boot/drivers/mtd/spi/
Dsf_dataflash.c71 uint8_t command[16]; member
123 uint8_t *command; in spi_dataflash_erase() local
133 memset(dataflash->command, 0 , sizeof(dataflash->command)); in spi_dataflash_erase()
134 command = dataflash->command; in spi_dataflash_erase()
168 command[0] = do_block ? OP_ERASE_BLOCK : OP_ERASE_PAGE; in spi_dataflash_erase()
169 command[1] = (uint8_t)(pageaddr >> 16); in spi_dataflash_erase()
170 command[2] = (uint8_t)(pageaddr >> 8); in spi_dataflash_erase()
171 command[3] = 0; in spi_dataflash_erase()
175 command[0], command[1], command[2], command[3], in spi_dataflash_erase()
178 status = spi_write_then_read(spi, command, 4, NULL, NULL, 0); in spi_dataflash_erase()
[all …]
/external/guice/core/test/com/google/inject/spi/
DElementsTest.java84 public Void visit(Message command) { in testAddMessageErrorCommand()
85 assertEquals("Message A 5 C", command.getMessage()); in testAddMessageErrorCommand()
86 assertNull(command.getCause()); in testAddMessageErrorCommand()
88 command.getSources().toString(), in testAddMessageErrorCommand()
91 assertContains(command.getSource(), getDeclaringSourcePart(ElementsTest.class)); in testAddMessageErrorCommand()
107 public Void visit(Message command) { in testAddThrowableErrorCommand()
108 assertEquals("A", command.getCause().getMessage()); in testAddThrowableErrorCommand()
109 assertEquals("An exception was caught and reported. Message: A", command.getMessage()); in testAddThrowableErrorCommand()
110 assertContains(command.getSource(), getDeclaringSourcePart(ElementsTest.class)); in testAddThrowableErrorCommand()
135 public Void visit(Message command) { in testErrorsAddedWhenExceptionsAreThrown()
[all …]
/external/python/cpython3/Doc/distutils/
Dcommandref.rst9 .. % \section{Building modules: the \protect\command{build} command family}
11 .. % \subsubsection{\protect\command{build}}
13 .. % \subsubsection{\protect\command{build\_py}}
15 .. % \subsubsection{\protect\command{build\_ext}}
17 .. % \subsubsection{\protect\command{build\_clib}}
23 Installing modules: the :command:`install` command family
26 The install command ensures that the build commands have been run and then runs
27 the subcommands :command:`install_lib`, :command:`install_data` and
28 :command:`install_scripts`.
30 .. % \subsubsection{\protect\command{install\_lib}}
[all …]
/external/python/cpython2/PC/VS7.1/
Dmake_buildinfo.c26 char command[500]; in make_buildinfo2() local
37 command[0] = '"'; /* quote the path to the executable */ in make_buildinfo2()
38 size = sizeof(command) - 1; in make_buildinfo2()
39 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS || in make_buildinfo2()
43 strcat(command, "bin\\subwcrev.exe"); in make_buildinfo2()
44 if (_stat(command+1, &st) < 0) in make_buildinfo2()
47 strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c"); in make_buildinfo2()
48 puts(command); fflush(stdout); in make_buildinfo2()
49 if (system(command) < 0) in make_buildinfo2()
56 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL "; in main() local
[all …]
/external/python/cpython2/PC/VS8.0/
Dmake_buildinfo.c28 char command[CMD_SIZE+1]; in make_buildinfo2() local
39 command[0] = '"'; /* quote the path to the executable */ in make_buildinfo2()
40 size = sizeof(command) - 1; in make_buildinfo2()
41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS || in make_buildinfo2()
45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe"); in make_buildinfo2()
46 if (_stat(command+1, &st) < 0) in make_buildinfo2()
49 strcat_s(command, CMD_SIZE, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c"); in make_buildinfo2()
50 puts(command); fflush(stdout); in make_buildinfo2()
51 if (system(command) < 0) in make_buildinfo2()
58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL "; in main() local
[all …]
/external/python/cpython2/PC/VS9.0/
Dmake_buildinfo.c28 char command[CMD_SIZE+1]; in make_buildinfo2() local
39 command[0] = '"'; /* quote the path to the executable */ in make_buildinfo2()
40 size = sizeof(command) - 1; in make_buildinfo2()
41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS || in make_buildinfo2()
45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe"); in make_buildinfo2()
46 if (_stat(command+1, &st) < 0) in make_buildinfo2()
49 strcat_s(command, CMD_SIZE, "\" .. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c"); in make_buildinfo2()
50 puts(command); fflush(stdout); in make_buildinfo2()
51 if (system(command) < 0) in make_buildinfo2()
58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL "; in main() local
[all …]
/external/deqp/scripts/opengl/
Dgen_wrapper.py36 def commandAliasDefinition (command): argument
37 return "#define\t%s\t%s" % (command.name, getMangledName(command.name))
39 def commandWrapperDeclaration (command): argument
41 command.type,
42 getMangledName(command.name),
43 ", ".join([param.declaration for param in command.params]))
51 def getDefaultReturn (command): argument
52 if command.name == "glGetError":
55 assert command.type != 'void'
56 return "(%s)0" % command.type
[all …]
/external/deqp/scripts/egl/
Dlibrary.py33 def virtualMemberDecl (command): argument
35 command.type,
36 getFunctionMemberName(command.name),
37 commandParams(command))
39 def concreteMemberDecl (command): argument
41 command.type,
42 getFunctionMemberName(command.name),
43 commandParams(command))
45 def memberImpl (command): argument
52 returnType = command.type,
[all …]
Dgtf_wrapper.py39 def commandAliasDefinition (command): argument
40 return "#define\t%s\t%s" % (command.name, getMangledName(command.name))
42 def commandWrapperDeclaration (command): argument
44 command.type,
45 getMangledName(command.name),
46 ", ".join([param.declaration for param in command.params]))
54 def commandWrapperDefinition (command): argument
66 for param in command.params:
73 returnType = command.type,
74 mangledName = "eglw" + command.name[3:],
[all …]
/external/autotest/server/
Dautoserv_utils.py74 command = [os.path.join(autoserv_directory, script_name)]
77 command.append('-p')
80 command += ['-r', results_directory]
82 command += ['--local-only-host-info', 'True']
83 command += ['--host-info-subdir', host_info_subdir]
86 command += ['-m', machines]
89 command += ['--ssh_verbosity', str(ssh_verbosity)]
92 command += ['--ssh_options', ssh_options]
95 command += ['--no_console_prefix']
107 command += ['-u', owner]
[all …]
/external/toybox/scripts/
Dmkflags.c18 char *command; member
95 new->command = ++string; in digest()
98 if (list && list->command) { in digest()
131 new->command = string++; in digest()
157 char command[256], flags[1024], allflags[1024]; in main() local
173 *command = *flags = *allflags = 0; in main()
175 command, flags, allflags); in main()
181 command, flags, allflags); in main()
183 if (!*command) break; in main()
185 fprintf(stderr, "\nError in %s (see generated/flags.raw)\n", command); in main()
[all …]
/external/skqp/src/compute/skc/
Dscheduler.cpp188 skc_scheduler_command_t command = SKC_SCHEDULER_COMMAND_INVALID; in skc_scheduler_acquire() local
196 command = scheduler->available.indices[--scheduler->available.rem]; in skc_scheduler_acquire()
201 if (command != SKC_SCHEDULER_COMMAND_INVALID) in skc_scheduler_acquire()
204 struct skc_scheduler_command * const sc = scheduler->extent + command; in skc_scheduler_acquire()
213 return command; in skc_scheduler_acquire()
223 skc_scheduler_command_t const command) in skc_scheduler_release() argument
229 scheduler->available.indices[scheduler->available.rem++] = command; in skc_scheduler_release()
241 skc_scheduler_command_t const command) in skc_scheduler_append() argument
243 scheduler->extent[command].state = SKC_SCHEDULER_COMMAND_STATE_WAITING; in skc_scheduler_append()
252 scheduler->waiting.indices[scheduler->waiting.tail] = command; in skc_scheduler_append()
[all …]
/external/skqp/tools/
DDumpRecord.cpp34 void operator()(const T& command) { in operator ()() argument
36 fDraw(command); in operator ()()
37 this->print(command, SkTime::GetNSecs() - start); in operator ()()
45 void print(const T& command, double ns) { in print() argument
46 this->printNameAndTime(command, ns); in print()
49 void print(const SkRecords::Restore& command, double ns) { in print() argument
51 this->printNameAndTime(command, ns); in print()
54 void print(const SkRecords::Save& command, double ns) { in print() argument
55 this->printNameAndTime(command, ns); in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
[all …]
/external/skia/tools/
DDumpRecord.cpp34 void operator()(const T& command) { in operator ()() argument
36 fDraw(command); in operator ()()
37 this->print(command, SkTime::GetNSecs() - start); in operator ()()
45 void print(const T& command, double ns) { in print() argument
46 this->printNameAndTime(command, ns); in print()
49 void print(const SkRecords::Restore& command, double ns) { in print() argument
51 this->printNameAndTime(command, ns); in print()
54 void print(const SkRecords::Save& command, double ns) { in print() argument
55 this->printNameAndTime(command, ns); in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
[all …]
/external/python/cpython3/Lib/test/
Dtest_sundry.py28 import distutils.command.bdist_dumb
30 import distutils.command.bdist_msi
31 import distutils.command.bdist
32 import distutils.command.bdist_rpm
33 import distutils.command.bdist_wininst
34 import distutils.command.build_clib
35 import distutils.command.build_ext
36 import distutils.command.build
37 import distutils.command.clean
38 import distutils.command.config
[all …]
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/
DStubFtpServer.java29 import org.mockftpserver.core.command.Command;
30 import org.mockftpserver.core.command.CommandHandler;
31 import org.mockftpserver.core.command.CommandNames;
32 import org.mockftpserver.core.command.ReplyTextBundleAware;
33 import org.mockftpserver.core.command.ReplyTextBundleUtil;
40 import org.mockftpserver.stub.command.AborCommandHandler;
41 import org.mockftpserver.stub.command.AcctCommandHandler;
42 import org.mockftpserver.stub.command.AlloCommandHandler;
43 import org.mockftpserver.stub.command.AppeCommandHandler;
44 import org.mockftpserver.stub.command.CdupCommandHandler;
[all …]
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/
DStubFtpServer.java29 import org.mockftpserver.core.command.Command;
30 import org.mockftpserver.core.command.CommandHandler;
31 import org.mockftpserver.core.command.CommandNames;
32 import org.mockftpserver.core.command.ReplyTextBundleAware;
33 import org.mockftpserver.core.command.ReplyTextBundleUtil;
40 import org.mockftpserver.stub.command.AborCommandHandler;
41 import org.mockftpserver.stub.command.AcctCommandHandler;
42 import org.mockftpserver.stub.command.AlloCommandHandler;
43 import org.mockftpserver.stub.command.AppeCommandHandler;
44 import org.mockftpserver.stub.command.CdupCommandHandler;
[all …]
/external/python/cpython2/Lib/test/
Dtest_sundry.py28 import distutils.command.bdist_dumb
30 import distutils.command.bdist_msi
31 import distutils.command.bdist
32 import distutils.command.bdist_rpm
33 import distutils.command.bdist_wininst
34 import distutils.command.build_clib
35 import distutils.command.build_ext
36 import distutils.command.build
37 import distutils.command.clean
38 import distutils.command.config
[all …]

12345678910>>...269