Searched refs:command (Results 276 - 300 of 320) sorted by path

<<111213

/haiku/src/kits/interface/
H A DInterfaceDefs.cpp529 BMessage command(IS_GET_MOUSE_TYPE);
532 status_t err = _control_input_server_(&command, &reply);
542 BMessage command(IS_SET_MOUSE_TYPE);
545 status_t err = command.AddInt32("mouse_type", type);
548 return _control_input_server_(&command, &reply);
555 BMessage command(IS_GET_MOUSE_TYPE);
557 command.AddString("mouse_name", mouse_name);
559 status_t err = _control_input_server_(&command, &reply);
570 BMessage command(IS_SET_MOUSE_TYPE);
573 status_t err_mouse_name = command
[all...]
H A DMenu.cpp178 "found in \"data\" and the int32 command found in \"what\" (used as "
204 "found in \"data\" and the int32 command found in \"what\" (used as "
1012 BMenu::FindItem(uint32 command) const
1019 if (item->Command() == command)
1023 item = item->Submenu()->FindItem(command);
2611 bool command = false; local
2639 command = true;
2664 if (command) {
H A DMenuItem.cpp777 const BBitmap* command = MenuPrivate::MenuItemCommand(); local
778 const BRect &rect = command->Bounds();
780 fSuper->DrawBitmap(command, where);
/haiku/src/kits/media/
H A DBufferConsumer.cpp108 producer_late_notice_received_command command;
109 command.source = whatSource;
110 command.how_much = howMuch;
111 command.performance_time = performanceTime;
113 SendToPort(whatSource.port, PRODUCER_LATE_NOTICE_RECEIVED, &command,
114 sizeof(command));
135 producer_video_clipping_changed_command* command; local
138 command
140 if (command == NULL)
143 command
280 producer_set_buffer_group_command *command local
379 const consumer_buffer_received_command* command local
402 const consumer_producer_data_status_command *command = static_cast<const consumer_producer_data_status_command *>(data); local
512 producer_video_clipping_changed_command *command; local
[all...]
H A DMediaAddOn.cpp630 add_on_server_rescan_flavors_command command;
631 command.add_on_id = fAddon;
632 return SendToAddOnServer(ADD_ON_SERVER_RESCAN_ADD_ON_FLAVORS, &command,
633 sizeof(command));
H A DMediaNode.cpp593 const node_start_command* command local
597 Start(command->performance_time);
603 const node_stop_command* command local
607 Stop(command->performance_time, command->immediate);
613 const node_seek_command* command local
617 Seek(command->media_time, command->performance_time);
623 const node_set_run_mode_command* command local
628 fRunMode = command
635 const node_time_warp_command* command local
653 const node_roll_command* command local
690 const node_set_timesource_command* command local
773 const node_request_completed_command* command local
[all...]
H A DMediaRoster.cpp367 node_final_release_command command; local
368 rv = SendToPort(node.port, NODE_FINAL_RELEASE, &command,
369 sizeof(command));
1350 node_start_command command; local
1351 command.performance_time = atPerformanceTime;
1353 return SendToPort(node.port, NODE_START, &command, sizeof(command));
1368 node_stop_command command; local
1369 command.performance_time = atPerformanceTime;
1370 command
1387 node_seek_command command; local
1582 node_roll_command command; local
[all...]
/haiku/src/kits/tracker/
H A DDeskWindow.cpp320 BString command; local
321 if (message.FindString("command", &command) != B_OK)
330 if (command.StartsWith(addOnPaths.StringAt(i))) {
339 BEntry entry(command);
H A DStatusWindow.cpp80 TCustomButton(BRect frame, uint32 command);
/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
H A Diflib.c4357 iflib_if_ioctl(if_t ifp, u_long command, caddr_t data) argument
4367 switch (command) {
4390 err = ether_ioctl(ifp, command, data);
4454 err = ifmedia_ioctl(ifp, ifr, ctx->ifc_mediap, command);
4527 err = IFDI_PRIV_IOCTL(ctx, command, data);
4531 err = ether_ioctl(ifp, command, data);
/haiku/src/libs/compat/freebsd_network/
H A Dif.c849 ether_ioctl(struct ifnet *ifp, u_long command, caddr_t data) argument
853 //dprintf("ether_ioctl: received %d\n", command);
855 switch (command) {
H A Dpci.cpp184 uint16_t command = pci_read_config(dev, PCI_command, 2); local
185 pci_write_config(dev, PCI_command, command | bit, 2);
/haiku/src/libs/icon/flat_icon/
H A DPathCommandQueue.cpp105 // we read the command buffer and then use the
108 // read command buffer
116 uint8 command; local
117 if (!_ReadCommand(command))
124 switch (command) {
212 PathCommandQueue::_AppendCommand(uint8 command) argument
214 // NOTE: a path command uses 2 bits, so 4 of
216 // after we have appended the fourth command,
226 fCommandByte |= command << fCommandPos;
243 PathCommandQueue::_ReadCommand(uint8& command) argument
[all...]
/haiku/src/servers/media/
H A DNodeManager.cpp294 node_final_release_command command; local
295 status_t status = SendToPort(node.port, NODE_FINAL_RELEASE, &command,
296 sizeof(command));
298 ERROR("NodeManager::ReleaseNodeReference: can't send command to "
329 node_final_release_command command; local
330 status_t status = SendToPort(node.port, NODE_FINAL_RELEASE, &command,
331 sizeof(command));
333 ERROR("NodeManager::ReleaseNodeAll: can't send command to "
H A Dmedia_server.cpp623 const server_register_dormant_node_command& command local
626 if (command.purge_id > 0)
627 gNodeManager->InvalidateDormantFlavorInfo(command.purge_id);
630 status_t status = dormantFlavorInfo.Unflatten(command.type,
631 command.flattened_data, command.flattened_size);
/haiku/src/servers/media_addon/
H A DMediaAddonServer.cpp394 const add_on_server_rescan_flavors_command* command = static_cast< local
397 = gDormantNodeManager->GetAddOn(command->add_on_id);
400 (int)command->add_on_id);
404 gDormantNodeManager->PutAddOn(command->add_on_id);
/haiku/src/servers/net/
H A DServices.cpp494 char command; local
495 if (read(fReadPipe, &command, 1) == 1 && command == 'q')
/haiku/src/servers/registrar/
H A DMessageEvent.cpp60 command.
67 \param command The "what" field of the message to be sent.
69 MessageEvent::MessageEvent(bigtime_t time, BHandler* handler, uint32 command) argument
71 fMessage(command),
101 command.
105 \param command The "what" field of the message to be sent.
108 uint32 command)
110 fMessage(command),
107 MessageEvent(bigtime_t time, const BMessenger& messenger, uint32 command) argument
H A DMessageEvent.h40 MessageEvent(bigtime_t time, BHandler* handler, uint32 command);
42 MessageEvent(bigtime_t time, const BMessenger& messenger, uint32 command);
/haiku/src/system/boot/platform/atari_m68k/
H A Dtoscalls.h466 #define Setscreen(log, phys, mode, command) toscallPPWW(XBIOS_TRAP, 5, (void *)log, (void *)phys, (int16)mode, (int16)command)
/haiku/src/system/kernel/arch/x86/
H A Dapic.cpp154 uint64 command = x86_read_msr(IA32_MSR_APIC_INTR_COMMAND); local
155 command &= APIC_INTR_COMMAND_1_MASK;
156 command |= (uint64)destination << 32;
157 command |= mode;
158 x86_write_msr(IA32_MSR_APIC_INTR_COMMAND, command);
/haiku/src/system/kernel/debug/
H A Ddebug.cpp78 // separates panic() message from command list to execute
336 // a complete command -- print its help
338 // get the command
342 debugger_command* command = find_debugger_command(buffer, true, ambiguous); local
345 if (command != NULL) {
347 print_debugger_command_usage(command->name);
350 kprintf("\nambiguous command\n");
352 kprintf("\nno such command\n");
357 // a partial command -- look for completions
362 debugger_command* command local
427 debugger_command* command = NULL; local
[all...]
H A Ddebug_commands.cpp36 debugger_command* command; member in struct:invoke_command_parameters
92 // invoke command
129 // invoke command
176 parameters->result = parameters->command->func(parameters->argc,
190 // set last command argument
195 // invoke command
199 int result = invoke_debugger_command(segment.command, segment.argc,
222 next_debugger_command(debugger_command* command, const char* prefix, argument
225 if (command == NULL)
226 command
240 debugger_command *command; local
284 invoke_debugger_command(struct debugger_command *command, int argc, char** argv) argument
429 debugger_command** command = &sCommands; local
483 debugger_command* command = find_debugger_command(oldName, false, local
500 debugger_command* command = find_debugger_command(commandName, true, local
[all...]
H A Ddebug_parser.cpp37 atom := variable | ( "(" expression ")" ) | ( "[" command "]" )
41 commandPipe := command ( "|" command )*
42 command := identifier argument*
150 parse_exception("out of memory for command execution", -1);
521 // Allowed are command or assignment. A command always starts with an
539 // no assignment, so let's assume it's a command
550 parse_exception("expected command or assignment", token.position);
787 debugger_command* command local
[all...]

Completed in 202 milliseconds

<<111213