Searched refs:command (Results 1 - 25 of 30) sorted by relevance

12

/xnu-2422.115.4/bsd/kern/
H A Dkern_xxx.c93 char command[64]; local
102 command[0] = '\0';
108 error = copyinstr(uap->command,
109 (void *)command, sizeof(command), (size_t *)&dummy);
119 error = boot(RB_BOOT, uap->opt, command);
H A Dkern_shutdown.c113 boot(int paniced, int howto, char *command) argument
129 md_prepare_for_shutdown(paniced, howto, command);
/xnu-2422.115.4/iokit/Kernel/
H A DIOCommandPool.cpp139 // getCommand - Gets a command from the pool. Pass true in
148 IOCommand *command = 0; local
153 runAction(func, (void *) &command, (void *) blockForCommand);
155 return command;
163 // (on safe side of command gate)
167 gatedGetCommand(IOCommand **command, bool blockForCommand) argument
178 *command, IOCommand *, fCommandChain);
184 // returnCommand - Returns command to the pool.
188 returnCommand(IOCommand *command) argument
192 (void) fSerializer->runAction(func, (void *) command);
202 gatedReturnCommand(IOCommand *command) argument
[all...]
H A DIOCommandQueue.cpp144 #error IOCommandQueue::checkForWork needs to be updated for new command size
182 enqueueSleep:command:
187 Key method that enqueues the four input fields onto the command queue
193 IODevice rawCommandOccurred... command to forward on the requests.
272 // now step over all remaining entries in the command queue
H A DIOMapper.cpp189 ppnum_t IOMapper::iovmAllocDMACommand(IODMACommand * command, IOItemCount pageCount) argument
194 void IOMapper::iovmFreeDMACommand(IODMACommand * command, argument
200 OSObject * memory, // dma command or iomd
H A DIOWorkLoop.cpp512 maintCommandEnum command = (maintCommandEnum) (uintptr_t) inC; local
516 switch (command)
/xnu-2422.115.4/bsd/dev/i386/
H A Dkern_machdep.c71 __unused char * command)
68 md_prepare_for_shutdown( __unused int paniced, __unused int howto, __unused char * command) argument
/xnu-2422.115.4/iokit/IOKit/
H A DIOCommandPool.h70 * the command (via the controller's factory method or a memory allocation)
71 * and calling the returnCommand method with the newly created command as its
85 IOCommandGate *fSerializer; /* command gate used for serializing pool access */
98 * @abstract The default size of any command pool.
100 * kIOCommandPoolDefaultSize is the default size of any command pool.
122 * The workloop that this command pool should synchronize with.
123 * @result Returns true if command pool was successfully initialized.
134 * The workloop that this command pool should synchronize with.
163 * If the caller would like to have its thread slept until a command is
180 * The command t
[all...]
H A DIOMapper.h130 virtual ppnum_t iovmAllocDMACommand(IODMACommand * command, IOItemCount pageCount);
131 virtual void iovmFreeDMACommand(IODMACommand * command, ppnum_t addr, IOItemCount pageCount);
134 OSObject * memory, // dma command or iomd
H A DIOWorkLoop.h98 @constant mAddEvent Used to tag a Remove event source command.
99 @constant mRemoveEvent Used to tag a Remove event source command.
163 @return kIOReturnUnsupported if the command given is not implemented, kIOReturnSuccess otherwise.
165 virtual IOReturn _maintRequest(void *command, void *data, void *, void *);
/xnu-2422.115.4/iokit/Tests/
H A DTestDevice.cpp122 TestDeviceAction command; local
128 command = (TestDeviceAction) sDevice->producer1Action;
130 command = (TestDeviceAction) sDevice->producer2Action;
134 (true, command, i, (void *) (i % (producerId + 1)));
/xnu-2422.115.4/bsd/net/
H A Dif_ether.h64 errno_t ether_ioctl(ifnet_t interface, u_int32_t command, void* data);
H A Dether_inet6_pr_module.c220 u_long command, void *data)
225 switch (command) {
219 ether_inet6_prmod_ioctl(ifnet_t ifp, protocol_family_t protocol_family, u_long command, void *data) argument
H A Dether_inet_pr_module.c314 u_long command, void *data)
319 switch (command) {
339 if (command != SIOCSIFADDR)
313 ether_inet_prmod_ioctl(ifnet_t ifp, protocol_family_t protocol_family, u_long command, void *data) 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)
H A Dif_ipsec.c847 u_long command,
852 switch(command) {
846 ipsec_ioctl(ifnet_t interface, u_long command, void *data) argument
H A Dif_utun.c767 u_long command,
772 switch(command) {
765 utun_ioctl( ifnet_t interface, u_long command, void *data) argument
H A Dkpi_interface.h287 @param cmd The ioctl command.
538 @param command The ioctl command.
544 unsigned long command, void *argument);
762 @abstract Storage type for the interface control command.
793 @abstract Storage type for the interface model sub-command.
921 address notification sub-command. This is used to indicate
939 @param cmd The ifnet_ctl_cmd_t interface control command.
940 @param arglen The length of the command argument.
941 @param arg The command argumen
[all...]
/xnu-2422.115.4/tools/lldbmacros/
H A Dxnu.py77 """ A function decorator to define a command with namd 'cmd_name' in the lldb scope to call python function.
78 params: cmd_name - str : name of command to be set in lldb prompt.
80 see README on Customizing command options.
83 raise RuntimeError("Cannot setup command with lowercase option args. %s" % option_string)
86 def _internal_command_function(debugger, command, result, internal_dict):
91 debuglog('Running %s from lldb_run_command' % command)
95 command_args = shlex.split(command)
138 #restore the verbose level after command is complete
148 print "ERROR: Cannot register command({:s}) without documentation".format(cmd_name)
153 lldb.debugger.HandleCommand("command scrip
[all...]
/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dcontent_protection_test.c35 int apple_key_store(uint32_t command, argument
73 io_result = IOConnectCallMethod(connection, command, inputs, input_count, input_structs, input_struct_count, outputs, output_count, NULL, NULL);
77 printf("FAILURE: call to AppleKeyStore method %d failed.\n", command);
92 int keystorectl(char * const command[]) argument
112 execv(keystorectl_path, command);
/xnu-2422.115.4/bsd/sys/
H A Dkern_memorystatus.h173 int memorystatus_control(uint32_t command, int32_t pid, uint32_t flags, void *buffer, size_t buffersize);
H A Dkdebug.h817 char command[20]; member in struct:__anon468
/xnu-2422.115.4/bsd/netinet/
H A Dip_fw2_compat.h9 int ipfw_get_command_and_version(struct sockopt *sopt, int *command, u_int32_t *api_version);
75 u_short fu_skipto_rule; /* SKIPTO command rule number */
161 u_short fu_skipto_rule; /* SKIPTO command rule number */
206 u_short fu_skipto_rule; /* SKIPTO command rule number */
413 u_short fu_skipto_rule; /* SKIPTO command rule number */
H A Dip_fw2_compat.c329 * Print the ip address contained in a command.
771 * of the current command, and also cleans up the first word of
772 * the new command in case it has been clobbered before.
1772 /* Check command specific stuff */
1805 printf(("%s invalid command\n", err_prefix));
1932 /* Check command specific stuff */
1967 printf(("%s invalid command\n", err_prefix));
2310 /* if the previous command was O_IN, and this
2312 * having either command, so let's back up prev
2483 * put back the have_state command a
3257 ipfw_get_command_and_version(struct sockopt *sopt, int *command, u_int32_t *api_version) argument
[all...]
/xnu-2422.115.4/makedefs/
H A DMakeInc.cmd5 # MakeInc.cmd contains command paths for use during

Completed in 183 milliseconds

12