Home
last modified time | relevance | path

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

12345678910>>...337

/external/ms-tpm-20-ref/TPMCmd/tpm/src/main/
DExecCommand.c95 COMMAND command; in ExecuteCommand() local
140 command.parameterBuffer = request; in ExecuteCommand()
141 command.parameterSize = requestSize; in ExecuteCommand()
146 result = TPMI_ST_COMMAND_TAG_Unmarshal(&command.tag, in ExecuteCommand()
147 &command.parameterBuffer, in ExecuteCommand()
148 &command.parameterSize); in ExecuteCommand()
153 &command.parameterBuffer, in ExecuteCommand()
154 &command.parameterSize); in ExecuteCommand()
170 result = TPM_CC_Unmarshal(&command.code, &command.parameterBuffer, in ExecuteCommand()
171 &command.parameterSize); in ExecuteCommand()
[all …]
DCommandDispatcher.c100 COMMAND_t command; // Address of the command member
150 COMMAND *command in ParseHandleBuffer() argument
161 pAssert(command->index in ParseHandleBuffer()
164 desc = s_CommandDataArray[command->index]; in ParseHandleBuffer()
173 command->handleNum = 0; in ParseHandleBuffer()
186 result = Unmarshal(index, &(command->handles[command->handleNum]), in ParseHandleBuffer()
187 &command->parameterBuffer, &command->parameterSize); in ParseHandleBuffer()
196 result = f(&(command->handles[command->handleNum]), in ParseHandleBuffer()
197 &command->parameterBuffer, in ParseHandleBuffer()
198 &command->parameterSize); in ParseHandleBuffer()
[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/toybox/toys/posix/
Dsed.c191 static void *get_regex(void *command, int offset) in get_regex() argument
198 return TT.lastregex = offset+(char *)command; in get_regex()
211 struct sedcmd *command; in sed_line() local
234 command = TT.restart ? ((struct sedcmd *)TT.restart)-1 : (void *)TT.pattern; in sed_line()
237 while (command) { in sed_line()
238 char *str, c = command->c; in sed_line()
241 if (*command->lmatch || *command->rmatch) { in sed_line()
246 if (command->hit) { in sed_line()
247 if (!(lm = command->lmatch[1])) { in sed_line()
248 if (!command->rmatch[1]) command->hit = 0; in sed_line()
[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/tpm2-tss/src/tss2-fapi/api/
DFapi_ChangeAuth.c164 IFAPI_Entity_ChangeAuth * command = &(context->cmd.Entity_ChangeAuth); in Fapi_ChangeAuth_Async() local
172 command->handle = ESYS_TR_NONE; in Fapi_ChangeAuth_Async()
173 memset(&command->object, 0, sizeof(IFAPI_OBJECT)); in Fapi_ChangeAuth_Async()
174 strdup_check(command->entityPath, entityPath, r, error_cleanup); in Fapi_ChangeAuth_Async()
176 strdup_check(command->authValue, authValue, r, error_cleanup); in Fapi_ChangeAuth_Async()
178 strdup_check(command->authValue, "", r, error_cleanup); in Fapi_ChangeAuth_Async()
180 command->handle = ESYS_TR_NONE; in Fapi_ChangeAuth_Async()
190 if (command->authValue) { in Fapi_ChangeAuth_Async()
191 if (strlen(command->authValue) > sizeof(TPMU_HA)) { in Fapi_ChangeAuth_Async()
197 command->newAuthValue.size = in Fapi_ChangeAuth_Async()
[all …]
DFapi_NvExtend.c182 IFAPI_NV_Cmds * command = &context->nv_cmd; in Fapi_NvExtend_Async() local
184 memset(command, 0 ,sizeof(IFAPI_NV_Cmds)); in Fapi_NvExtend_Async()
191 command->data = in_data; in Fapi_NvExtend_Async()
192 strdup_check(command->nvPath, nvPath, r, error_cleanup); in Fapi_NvExtend_Async()
193 strdup_check(command->logData, logData, r, error_cleanup); in Fapi_NvExtend_Async()
194 command->numBytes = dataSize; in Fapi_NvExtend_Async()
201 r = ifapi_keystore_load_async(&context->keystore, &context->io, command->nvPath); in Fapi_NvExtend_Async()
202 goto_if_error2(r, "Could not open: %s", error_cleanup, command->nvPath); in Fapi_NvExtend_Async()
211 SAFE_FREE(command->data); in Fapi_NvExtend_Async()
212 SAFE_FREE(command->nvPath); in Fapi_NvExtend_Async()
[all …]
DFapi_Quote.c211 IFAPI_PCR * command = &context->cmd.pcr; in Fapi_Quote_Async() local
223 strdup_check(command->keyPath, keyPath, r, error_cleanup); in Fapi_Quote_Async()
225 command->pcrList = malloc(pcrListSize * sizeof(TPM2_HANDLE)); in Fapi_Quote_Async()
226 goto_if_null2(command->pcrList, "Out of memory", r, TSS2_FAPI_RC_MEMORY, in Fapi_Quote_Async()
228 memcpy(command->pcrList, pcrList, pcrListSize); in Fapi_Quote_Async()
230 command->pcrListSize = pcrListSize; in Fapi_Quote_Async()
231 command->tpm_quoted = NULL; in Fapi_Quote_Async()
233 FAPI_COPY_DIGEST(&command->qualifyingData.buffer[0], in Fapi_Quote_Async()
234 command->qualifyingData.size, qualifyingData, qualifyingDataSize); in Fapi_Quote_Async()
236 command->qualifyingData.size = 0; in Fapi_Quote_Async()
[all …]
/external/llvm-project/lldb/test/Shell/Commands/
Dcommand-disassemble.s5 # RUN: -s %S/Inputs/command-disassemble.lldbinit -o exit 2>&1 | FileCheck %s
20 # CHECK-NEXT: command-disassemble.s.tmp`foo:
21 # CHECK-NEXT: command-disassemble.s.tmp[0x0] <+0>: int $0x10
22 # CHECK-NEXT: command-disassemble.s.tmp[0x2] <+2>: int $0x11
23 # CHECK-NEXT: command-disassemble.s.tmp[0x4] <+4>: int $0x12
24 # CHECK-NEXT: command-disassemble.s.tmp[0x6] <+6>: int $0x13
25 # CHECK-NEXT: command-disassemble.s.tmp[0x8] <+8>: int $0x14
26 # CHECK-NEXT: command-disassemble.s.tmp[0xa] <+10>: int $0x15
27 # CHECK-NEXT: command-disassemble.s.tmp[0xc] <+12>: int $0x16
29 # CHECK-NEXT: command-disassemble.s.tmp`bar:
[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/libcups/scheduler/
Dtestlpd.c27 static int do_command(int outfd, int infd, const char *command);
194 const char *command) /* I - Command line to send */ in do_command() argument
200 printf("COMMAND: %02X %s", command[0], command + 1); in do_command()
202 len = strlen(command); in do_command()
204 if ((size_t)write(outfd, command, len) < len) in do_command()
230 char command[1024], /* Command buffer */ in print_job() local
260 snprintf(command, sizeof(command), "\002%s\n", dest); in print_job()
261 if ((status = do_command(outfd, infd, command)) != 0) in print_job()
293 snprintf(command, sizeof(command), "\002%d cfA%03dlocalhost\n", in print_job()
296 if ((status = do_command(outfd, infd, command)) != 0) in print_job()
[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/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/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/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/llvm-project/lldb/test/API/commands/command/script/
Dcallables.py8 def check(debugger, command, context, result, internal_dict): argument
10 not isinstance(command, str) or
21 def v5foobar(debugger, command, context, result, internal_dict, *args): argument
22 check(debugger, command, context, result, internal_dict)
24 def foobar(debugger, command, context, result, internal_dict): argument
25 check(debugger, command, context, result, internal_dict)
27 def foobar4(debugger, command, result, internal_dict): argument
28 check(debugger, command, None, result, internal_dict)
32 def sfoobar(debugger, command, context, result, internal_dict): argument
33 check(debugger, command, context, result, internal_dict)
[all …]
Dpy_import5 command script add welcome --class welcome.WelcomeCommand
6 command script add targetname --class welcome.TargetnameCommand
7 command script add longwait --function welcome.print_wait_impl
8 command script import mysto.py --allow-reload
9 command script add tell_sync --function welcome.check_for_synchro --synchronicity sync
10 command script add tell_async --function welcome.check_for_synchro --synchronicity async
11 command script add tell_curr --function welcome.check_for_synchro --synchronicity curr
12 command script add takes_exe_ctx --function welcome.takes_exe_ctx
13 command script import decorated.py
16 command script import callables.py
[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/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/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 …]
/external/libcups/systemv/
Dcupsaccept.c23 static void usage(const char *command) _CUPS_NORETURN;
35 char *command, /* Command to do */ in main() local
50 if ((command = strrchr(argv[0], '/')) != NULL) in main()
51 command ++; in main()
53 command = argv[0]; in main()
57 if (!strcmp(command, "cupsaccept")) in main()
59 else if (!strcmp(command, "cupsreject")) in main()
61 else if (!strcmp(command, "cupsdisable")) in main()
63 else if (!strcmp(command, "cupsenable")) in main()
67 _cupsLangPrintf(stderr, _("%s: Don't know what to do."), command); in main()
[all …]
/external/autotest/server/
Dautoserv_utils.py83 command = [full_script_path]
85 command = [sys.executable, full_script_path]
88 command.append('-p')
91 command += ['-r', results_directory]
93 command += ['--local-only-host-info', 'True']
94 command += ['--host-info-subdir', host_info_subdir]
97 command += ['-m', machines]
100 command += ['--ssh_verbosity', str(ssh_verbosity)]
103 command += ['--ssh_options', ssh_options]
106 command += ['--no_console_prefix']
[all …]
/external/autotest/server/site_tests/firmware_Mosys/
Dfirmware_Mosys.py46 def check_for_errors(self, output, command): argument
56 self._tag_failure(command)
60 def run_cmd(self, command): argument
68 logging.info('Execute %s', command)
70 command, True)
74 def check_ec_version(self, command, exp_ec_version): argument
99 self._tag_failure(command)
101 self._tag_failure(command)
104 def check_pd_version(self, command, exp_pd_version): argument
129 self._tag_failure(command)
[all …]

12345678910>>...337