Searched refs:command (Results 251 - 275 of 320) sorted by relevance

<<111213

/haiku/headers/posix/
H A Dstdio.h97 extern FILE *popen(const char *command, const char *mode);
H A Dstdlib.h65 extern int system(const char *command);
/haiku/src/kits/app/
H A DLooper.cpp225 BLooper::PostMessage(uint32 command) argument
227 BMessage message(command);
240 BLooper::PostMessage(uint32 command, BHandler* handler, BHandler* replyTo) argument
242 BMessage message(command);
711 what scripting "command" has been sent, e.g., for easy use in a
1386 // check command conditions
/haiku/src/add-ons/kernel/drivers/bus/scsi/
H A Dscsi_raw.c98 memcpy(request->cdb, cmd->command, SCSI_MAX_CDB_SIZE);
/haiku/src/apps/terminal/
H A DTermWindow.h143 static BMenu* _MakeFontSizeMenu(uint32 command,
/haiku/src/bin/network/telnet/
H A Dtelnet.c998 /*@*/ printf("lm_will: no command!!!\n"); /* Should not happen... */
1019 /*@*/ printf("lm_wont: no command!!!\n"); /* Should not happen... */
1034 /*@*/ printf("lm_do: no command!!!\n"); /* Should not happen... */
1055 /*@*/ printf("lm_dont: no command!!!\n"); /* Should not happen... */
1350 * suboption list by this function. The end of negotiation command,
1370 /* The end of negotiation command requires 2 bytes. */
1876 command(0, "z\n", 2);
1920 command(0, "close\n", 6);
1925 command(0, "z\n", 2);
1929 command(
[all...]
H A Dexterns.h134 extern cc_t escape; /* Escape to command mode */
141 *prompt; /* Prompt for command. */
240 command(int, const char *, int),
/haiku/src/add-ons/kernel/drivers/network/ether/pcnet/dev/pcn/
H A Dif_pcn.c1370 pcn_ioctl(ifp, command, data)
1372 u_long command;
1380 switch(command) {
1424 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1427 error = ether_ioctl(ifp, command, data);
/haiku/src/add-ons/kernel/busses/usb/
H A Dehci.cpp421 uint16 command = fPci->read_pci_config(fDevice, PCI_command, 2); local
422 command &= ~PCI_command_io;
423 command |= PCI_command_master | PCI_command_memory;
425 fPci->write_pci_config(fDevice, PCI_command, 2, command);
600 command = fPci->read_pci_config(fDevice, PCI_command, 2);
601 if ((polling || fUseMSI) == ((command & PCI_command_int_disable) == 0)) {
603 command &= ~PCI_command_int_disable;
605 command |= PCI_command_int_disable;
607 fPci->write_pci_config(fDevice, PCI_command, 2, command);
/haiku/src/add-ons/kernel/drivers/network/wlan/aironetwifi/dev/an/
H A Dif_an.c1298 /* Ack the command */
1336 /* Ack the command */
1872 an_ioctl(struct ifnet *ifp, u_long command, caddr_t data) argument
1905 switch (command) {
1929 error = ifmedia_ioctl(ifp, ifr, &sc->an_ifmedia, command);
1988 mode = l_ioctl.command;
2002 /* copy out the updated command info */
2014 l_ioctl.command = 0;
2564 error = ether_ioctl(ifp, command, data);
3303 switch (l_ioctl->command) {
3376 int rid, command, error; local
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp230 BeOSKernelVolume::IOCtl(void* node, void* cookie, uint32 command, argument
235 return fFSOps->ioctl(fVolumeCookie, node, cookie, (int)command, buffer,
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp573 POP3Protocol::RetrieveInternal(const char* command, int32 message, argument
597 if (SendCommand(command) != B_OK)
710 // sending the QUIT command. Because of that the message number stays
767 // Flush any accumulated garbage data before we send our command, so we
769 // due to bugs) as being from this command.
/haiku/src/servers/keystore/
H A DKeyStoreServer.cpp538 KeyStoreServer::_AccessFlagsFor(uint32 command) const
540 switch (command) {
/haiku/src/apps/charactermap/
H A DCharacterView.cpp53 CharacterView::SetTarget(BMessenger target, uint32 command) argument
56 fTargetCommand = command;
H A DCharacterWindow.cpp103 EscapeMessageFilter(uint32 command) argument
105 fCommand(command)
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp456 FileSystem::GetIOCtlInfo(int command) const
458 return (fSettings ? fSettings->GetIOCtlInfo(command) : NULL);
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp406 Command* command = fCurrentCommand; local
412 return command;
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A DVolume.h74 uint32 command, void* buffer, size_t size);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelVolume.h81 uint32 command, void* buffer, size_t size);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.h26 extern CommandActuator* CreateCommandActuator(const char* command);
/haiku/src/bin/
H A Dhey.cpp8 // 1.2.8: (Sander Stoks): Added command-line option -o which will output the "result" value
50 // Usage: This command backs up your hard drive.
81 // at the end of the command which will add additional data to the scripting message. E.g:
344 char command[MAX_INPUT_SIZE]; local
347 while (fgets(command, sizeof(command), stdin)) {
349 err = Hey(&target, command, &reply);
499 // maybe this is a user defined command, ask for the supported suites
530 "This command backs up your hard"
1442 "This command back
[all...]
/haiku/src/libs/compat/freebsd_iflib/
H A Difdi_if.c142 null_priv_ioctl(if_ctx_t _ctx __unused, u_long command, caddr_t *data __unused) argument
/haiku/headers/os/interface/
H A DMenu.h107 BMenuItem* FindItem(uint32 command) const;
/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDisc.cpp17 The SCSI command of interest is "READ TOC/PMA/ATIP", command
20 The format of interest for said command is "Full TOC", format
128 = (scsi_table_of_contents_command*)(&(cmd->command));
131 TRACE(("%.2x,", cmd->command[i]));
135 TRACE((" command:\n"));
136 TRACE((" command = %d (0x%.2x)\n", scsi_command->command,
137 scsi_command->command));
253 // Init the scsi command an
[all...]
/haiku/src/kits/game/
H A DWindowScreen.cpp180 BMessage command(IS_SET_MOUSE_POSITION);
183 command.AddPoint("where", BPoint(x, y));
184 _control_input_server_(&command, &reply);

Completed in 175 milliseconds

<<111213