Searched refs:command (Results 1 - 25 of 2191) sorted by last modified time

1234567891011>>

/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dkdebug.h936 char command[20]; member in struct:__anon14855
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dkpi_interface.h287 @param cmd The ioctl command.
538 @param command The ioctl command.
544 unsigned long command, void *argument);
763 @abstract Storage type for the interface control command.
795 @abstract Storage type for the interface model sub-command.
926 address notification sub-command. This is used to indicate
944 @param cmd The ifnet_ctl_cmd_t interface control command.
945 @param arglen The length of the command argument.
946 @param arg The command argumen
[all...]
H A Ddlil.c4812 unsigned long command, void *argument)
4814 #pragma unused(ifp, protocol, command, argument)
4811 ifproto_media_ioctl(struct ifnet *ifp, protocol_family_t protocol, unsigned long command, void *argument) argument
H A Dether_if_module.c604 ether_ioctl(ifnet_t ifp, u_int32_t command, void *data) argument
606 #pragma unused(ifp, command, data)
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkdebug.c1400 (void) strlcpy (mapptr->command, t->atts->task_comm,
1560 * We need to save the procs command string
H A Dkern_memorystatus.c4134 switch (args->command) {
/macosx-10.10/xnu-2782.1.97/makedefs/
H A DMakeInc.cmd5 # MakeInc.cmd contains command paths for use during
/macosx-10.10/top-100.1.2/
H A Dlibtop.c1935 * Get command name/args.
1945 * Something failed while fetching the command string (the pid is probably gone).
2117 * Get the command name for the process associated with pinfo. For CFM
2119 * first program argument is the actual command name.
2133 if (pinfo->psamp.command) {
2134 free(pinfo->psamp.command);
2135 pinfo->psamp.command = NULL;
2138 pinfo->psamp.command = malloc(bufferSize);
2139 if (NULL == pinfo->psamp.command)
2142 pinfo->psamp.command[
2179 char *command_beg, *command, *command_end; local
[all...]
/macosx-10.10/ppp-786.1.1/Helpers/vpnd/
H A Dvpnplugins.c417 // call the ipconfig command
419 int call_ipconfig(char *command, char *interface, struct in_addr *address, int timeout) argument
437 execle("/usr/sbin/ipconfig", "ipconfig", command, interface, "FAILOVER", str, "255.255.255.255", str1, (char *)0, (char *)0);
/macosx-10.10/llvmCore-3425.0.34/utils/vim/
H A Dllvm.vim87 command -nargs=+ HiLink hi link <args>
89 command -nargs=+ HiLink hi def link <args>
H A Dtablegen.vim36 command -nargs=+ HiLink hi link <args>
38 command -nargs=+ HiLink hi def link <args>
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DTestFormats.py141 # FIXME: Refactor into generic test for running some command on a directory
144 def __init__(self, command, dir, recursive=False,
146 if isinstance(command, str):
147 self.command = [command]
149 self.command = list(command)
195 cmd = list(self.command)
H A DTestRunner.py14 def __init__(self, command, message):
15 self.command = command
26 def executeCommand(command, cwd=None, env=None):
31 p = subprocess.Popen(command, cwd=cwd,
52 raise NotImplementedError,"unsupported test command: '&'"
68 raise ValueError,'Unknown shell command: %r' % cmd.op
156 raise InternalShellError(j, '%r: command not found' % j.args[0])
294 # Only valgrind the first command in each pipeline, to avoid
320 command
[all...]
H A DUtil.py44 """capture(command) - Run the given command (or argv list) in a shell and
51 def which(command, paths = None):
52 """which(command, [paths]) - Look up the given command in the paths string
59 if os.path.isfile(command):
60 return command
76 p = os.path.join(path, command + ext)
/macosx-10.10/llvmCore-3425.0.34/utils/
H A Dllvm-native-gcc17 # process command-line options.
84 # run a command, optionally echoing, and quitting if it fails:
86 my $command = join(" ", @_);
87 print "$command\n" if $Verbose;
88 $command =~ s/\"/\\\"/g;
89 system $command and die "$0: $command failed";
170 # build the llvm-gcc command line.
194 llvm-native-gcc is a wrapper around the LLVM command-line tools which generates
215 Print command line
[all...]
H A Dllvm-native-gxx17 # process command-line options.
84 # run a command, optionally echoing, and quitting if it fails:
86 my $command = join(" ", @_);
87 print "$command\n" if $Verbose;
88 $command =~ s/\"/\\\"/g;
89 system $command and die "$0: $command failed";
170 # build the llvm-gxx command line.
194 llvm-native-g++ is a wrapper around the LLVM command-line tools which generates
215 Print command line
[all...]
/macosx-10.10/llvmCore-3425.0.34/projects/sample/autoconf/
H A Dltmain.sh223 # if one wasn't chosen via the "--tag" command line option.
225 # command doesn't match the default compiler.
240 # Blanks in the command may have been stripped by the calling shell,
262 # The compiler in the base compile command matches
272 # was found and let the user know that the "--tag" command
395 # Parse our command line options once, thoroughly.
559 # If this variable is set in any of the actions, the command in it
624 # Get the compilation command and the source file.
649 # Accept any command-line options.
812 $echo "$modename: you must specify a compilation command"
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Unix/
H A DProgram.inc360 // Following the POSIX convention for command-line tools (which posix_spawn
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DProgram.inc172 // Windows wants a command line, not an array of args, to pass to the new
176 // First, determine the length of the command line.
182 // Now build the command line.
183 char *command = reinterpret_cast<char *>(_alloca(len+1));
184 char *p = command;
279 BOOL rc = CreateProcess(path.c_str(), command, NULL, NULL, TRUE, 0,
/macosx-10.10/llvmCore-3425.0.34/autoconf/
H A Dltmain.sh223 # if one wasn't chosen via the "--tag" command line option.
225 # command doesn't match the default compiler.
240 # Blanks in the command may have been stripped by the calling shell,
262 # The compiler in the base compile command matches
272 # was found and let the user know that the "--tag" command
395 # Parse our command line options once, thoroughly.
559 # If this variable is set in any of the actions, the command in it
624 # Get the compilation command and the source file.
649 # Accept any command-line options.
812 $echo "$modename: you must specify a compilation command"
[all...]
/macosx-10.10/libdispatch-442.1.4/src/
H A Dvoucher.c80 .command = MACH_VOUCHER_ATTR_COPY,
85 .command = MACH_VOUCHER_ATTR_COPY,
90 .command = MACH_VOUCHER_ATTR_USER_DATA_STORE,
276 .command = MACH_VOUCHER_ATTR_BANK_CREATE,
300 .command = MACH_VOUCHER_ATTR_COPY,
411 .command = MACH_VOUCHER_ATTR_COPY,
417 .command = MACH_VOUCHER_ATTR_REDEEM,
550 .command = MACH_VOUCHER_ATTR_COPY,
555 .command = MACH_VOUCHER_ATTR_REMOVE,
2017 .command
[all...]
/macosx-10.10/kext_tools-384.1.4/
H A Dbootcaches.c1273 updateStamp(char *root, cachedPath *cpath, int fdvol, int command) argument
1287 if (command == kBCStampsApplyTimes) {
1297 updateStamps(struct bootCaches *caches, int command) argument
1315 switch (command) {
1325 if (command == kBCStampsApplyTimes &&
1332 anyErr |= updateStamp(caches->root, cp, caches->cachefd, command);
1339 anyErr |= updateStamp(caches->root, cp, caches->cachefd, command);
1344 anyErr |= updateStamp(caches->root, cp, caches->cachefd, command);
1347 anyErr |= updateStamp(caches->root, cp, caches->cachefd, command);
1350 anyErr |= updateStamp(caches->root, cp, caches->cachefd, command);
[all...]
H A Dbootcaches.h198 int updateStamps(struct bootCaches *caches, int command);
/macosx-10.10/configd-699.1.5/scutil.tproj/
H A Dscutil.c34 * - added command line history & editing
304 /* process the command */
322 usage(const char *command) argument
324 SCPrint(TRUE, stderr, CFSTR("usage: %s\n"), command);
327 SCPrint(TRUE, stderr, CFSTR(" or: %s --prefs [preference-file]\n"), command);
330 SCPrint(TRUE, stderr, CFSTR(" or: %s [-W] -r nodename\n"), command);
331 SCPrint(TRUE, stderr, CFSTR(" or: %s [-W] -r address\n"), command);
332 SCPrint(TRUE, stderr, CFSTR(" or: %s [-W] -r local-address remote-address\n"), command);
335 SCPrint(TRUE, stderr, CFSTR(" or: %s -w dynamic-store-key [ -t timeout ]\n"), command);
339 SCPrint(TRUE, stderr, CFSTR(" or: %s --get pref\n"), command);
[all...]
/macosx-10.10/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBattery.cpp35 // Retry attempts on SMBus command failure
459 t->address, t->command, t->status);
835 if (((kBFullChargeCapacityCmd == transaction->command)
836 || (kBDesignCapacityCmd == transaction->command)
837 || ((kBRemainingCapacityCmd == transaction->command)
854 transaction->address, transaction->command, fRetryAttempts);
1015 transaction->command, transaction_status, fRetryAttempts, kRetryAttempts);
1027 // Is it a set it and forget it command?
1446 fTransaction.command = cmd;
1470 fTransaction.command
[all...]

Completed in 269 milliseconds

1234567891011>>