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

1234567891011>>

/haiku-fatelf/src/libs/stdc++/legacy/
H A Dprocbuf.cc34 procbuf::procbuf(const char *command, int mode) : filebuf() argument
36 _IO_proc_open(this, command, (mode & ios::in) ? "r" : "w");
39 procbuf *procbuf::open(const char *command, int mode) argument
41 return (procbuf*)_IO_proc_open(this, command, (mode & ios::in) ? "r" : "w");
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dfs_shell_command.h12 int send_external_command(const char *command, int *result);
H A Dfs_shell_command_unix.h11 char command[20480]; member in struct:external_command_message
H A Dfs_shell_command_beos.h8 static const char *kFSShellCommandPort = "fs shell command port";
12 char command[20480]; member in struct:external_command_message
/haiku-fatelf/src/tools/fs_shell/
H A Dfs_shell_command.h12 bool send_external_command(const char* command, int* result);
H A Dfs_shell_command_beos.h11 static const char *kFSShellCommandPort = "fs shell command port";
16 char command[1]; member in struct:external_command_message
/haiku-fatelf/src/bin/pkgman/
H A Dpkgman.cpp20 "Usage: %s <command> <command args>\n"
55 const char* command = argv[1]; local
56 if (strncmp(command, "add-r", 5) == 0)
59 if (strncmp(command, "drop-r", 6) == 0)
62 if (strncmp(command, "list-r", 6) == 0)
65 if (strncmp(command, "refr", 4) == 0)
68 // if (strcmp(command, "search") == 0)
71 if (strcmp(command, "help") == 0)
/haiku-fatelf/src/apps/icon-o-matic/
H A DUtil.cpp25 Style** style, AddStylesCommand** command)
31 *command = new (nothrow) AddStylesCommand(
34 if (*command == NULL) {
39 *command = NULL;
46 AddPathsCommand** command, VectorPath* other)
58 *command = new (nothrow) AddPathsCommand(
60 if (*command == NULL) {
65 *command = NULL;
24 new_style(rgb_color color, StyleContainer* container, Style** style, AddStylesCommand** command) argument
45 new_path(PathContainer* container, VectorPath** path, AddPathsCommand** command, VectorPath* other) argument
/haiku-fatelf/src/bin/coreutils/man/
H A Dtimeout.x2 timeout \- run a command with a time limit
H A Dchroot.x2 chroot \- run command or interactive shell with special root directory
H A Dnohup.x2 nohup \- run a command immune to hangups, with output to a non-tty
/haiku-fatelf/src/kits/device/
H A DUSBEndpoint.cpp20 usb_raw_command command; local
21 command.endpoint_etc.descriptor = &fDescriptor;
22 command.endpoint_etc.config_index = fInterface->Configuration()->Index();
23 command.endpoint_etc.interface_index = fInterface->Index();
24 command.endpoint_etc.alternate_index = fInterface->AlternateIndex();
25 command.endpoint_etc.endpoint_index = fIndex;
26 if (ioctl(fRawFD, B_USB_RAW_COMMAND_GET_ENDPOINT_DESCRIPTOR_ETC, &command,
27 sizeof(command)) || command.endpoint_etc.status != B_USB_RAW_STATUS_SUCCESS)
141 usb_raw_command command;
[all...]
H A DUSBDevice.cpp59 usb_raw_command command; local
60 if (ioctl(fRawFD, B_USB_RAW_COMMAND_GET_VERSION, &command, sizeof(command))
61 || command.version.status != B_USB_RAW_PROTOCOL_VERSION) {
66 command.device.descriptor = &fDescriptor;
67 if (ioctl(fRawFD, B_USB_RAW_COMMAND_GET_DEVICE_DESCRIPTOR, &command,
68 sizeof(command)) || command.device.status != B_USB_RAW_STATUS_SUCCESS) {
252 usb_raw_command command;
253 command
[all...]
H A DUSBInterface.cpp133 usb_raw_command command;
134 command.generic_etc.descriptor = descriptor;
135 command.generic_etc.config_index = fConfiguration->Index();
136 command.generic_etc.interface_index = fIndex;
137 command.generic_etc.alternate_index = fAlternate;
138 command.generic_etc.generic_index = index;
139 command.generic_etc.length = length;
140 if (ioctl(fRawFD, B_USB_RAW_COMMAND_GET_GENERIC_DESCRIPTOR_ETC, &command,
141 sizeof(command)) || command
168 usb_raw_command command; local
210 usb_raw_command command; local
224 usb_raw_command command; local
240 usb_raw_command command; local
[all...]
/haiku-fatelf/src/bin/package/
H A Dpackage.cpp22 "Usage: %s <command> <command args>\n"
97 const char* command = argv[1]; local
98 if (strcmp(command, "add") == 0)
101 if (strcmp(command, "create") == 0)
104 if (strcmp(command, "dump") == 0)
107 if (strcmp(command, "extract") == 0)
110 if (strcmp(command, "list") == 0)
113 if (strcmp(command, "help") == 0)
/haiku-fatelf/src/kits/media/
H A DBufferConsumer.cpp107 producer_late_notice_received_command command;
108 command.source = whatSource;
109 command.how_much = howMuch;
110 command.performance_time = performanceTime;
112 SendToPort(whatSource.port, PRODUCER_LATE_NOTICE_RECEIVED, &command,
113 sizeof(command));
134 producer_video_clipping_changed_command* command; local
137 command
139 if (command == NULL)
142 command
384 const consumer_buffer_received_command* command local
401 const consumer_producer_data_status_command *command = static_cast<const consumer_producer_data_status_command *>(data); local
507 producer_video_clipping_changed_command *command; local
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/bus/usb/
H A Dusb_raw.cpp270 usb_raw_command *command = (usb_raw_command *)buffer;
271 if (length < sizeof(command->version.status))
274 command->version.status = B_USB_RAW_STATUS_ABORTED;
279 command->version.status = B_USB_RAW_PROTOCOL_VERSION;
285 if (length < sizeof(command->device))
293 if (user_memcpy(command->device.descriptor, deviceDescriptor,
298 command->device.status = B_USB_RAW_STATUS_SUCCESS;
304 if (length < sizeof(command->config))
308 usb_raw_get_configuration(device, command->config.config_index,
309 &command
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DIOCtlInfo.h10 int command; member in struct:IOCtlInfo
/haiku-fatelf/src/bin/package_repo/
H A Dpackage_repo.cpp20 "Usage: %s <command> <command args>\n"
56 const char* command = argv[1]; local
57 if (strcmp(command, "create") == 0)
60 if (strcmp(command, "list") == 0)
63 if (strcmp(command, "help") == 0)
/haiku-fatelf/src/kits/interface/
H A DInput.cpp29 BMessage command(IS_FIND_DEVICES);
32 command.AddString("device", name);
34 status_t err = _control_input_server_(&command, &reply);
60 BMessage command(IS_FIND_DEVICES);
63 status_t err = _control_input_server_(&command, &reply);
89 BMessage command(IS_WATCH_DEVICES);
92 command.AddMessenger("target", target);
93 command.AddBool("start", start);
95 return _control_input_server_(&command, &reply);
125 BMessage command(IS_IS_DEVICE_RUNNIN
257 _control_input_server_(BMessage *command, BMessage *reply) argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/kernel_add_on/
H A DIOCtlInfo.h10 int command; member in struct:IOCtlInfo
/haiku-fatelf/src/apps/icon-o-matic/generic/command/
H A DCommandStack.cpp35 CommandStack::Perform(Command* command) argument
40 status_t ret = command ? B_OK : B_BAD_VALUE;
42 ret = command->InitCheck();
45 ret = command->Perform();
48 ret = _AddCommand(command);
52 delete command;
68 Command* command = fUndoHistory.top(); local
70 status = command->Undo();
72 fRedoHistory.push(command);
74 fUndoHistory.push(command);
92 Command* command = fRedoHistory.top(); local
191 _AddCommand(Command* command) argument
[all...]
/haiku-fatelf/src/apps/mediaplayer/support/
H A DCommandStack.cpp36 CommandStack::Perform(Command* command) argument
41 status_t ret = command ? B_OK : B_BAD_VALUE;
43 ret = command->InitCheck();
46 ret = command->Perform();
49 ret = _AddCommand(command);
53 delete command;
71 Command* command = fUndoHistory.top(); local
73 status = command->Undo();
75 fRedoHistory.push(command);
77 fUndoHistory.push(command);
95 Command* command = fRedoHistory.top(); local
194 _AddCommand(Command* command) argument
[all...]
/haiku-fatelf/headers/cpp/
H A Dprocbuf.h42 procbuf(const char *command, int mode);
43 procbuf* open(const char *command, int mode);
/haiku-fatelf/src/apps/showimage/
H A DToolBarView.h25 void AddAction(uint32 command, BHandler* target,
34 void SetActionEnabled(uint32 command, bool enabled);
35 void SetActionPressed(uint32 command, bool pressed);
36 void SetActionVisible(uint32 command, bool visible);
43 BIconButton* _FindIconButton(uint32 command) const;

Completed in 172 milliseconds

1234567891011>>