Searched refs:action (Results 51 - 75 of 134) sorted by relevance

123456

/haiku/src/add-ons/kernel/generic/scsi_periph/
H A Dremovable.cpp125 switch (res.action) {
140 SHOW_FLOW( 3, "action: %x, error: %x", (int)res.action, (int)res.error_code);
H A Dio.cpp353 switch (res.action) {
361 if (res.action == err_act_ok)
362 res.action = err_act_retry;
370 res.action = err_act_retry;
372 res.action = err_act_fail;
375 } while ((res.action == err_act_retry && retries++ < 3)
376 || (res.action == err_act_many_retries && retries++ < 30));
/haiku/src/tests/servers/app/stress_test/
H A Dmain.cpp92 int32 action = CountWindows() > 1 ? rand() % 10 : 0; local
93 switch (action) {
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.h104 status_t _AddContextAction(const char* action,
107 status_t _CreateContextAction(const char* action,
H A DSourceView.h112 uint32 action, target_addr_t address) = 0;
/haiku/src/add-ons/print/transports/ipp/
H A DHttpURLConnection.h116 virtual void action();
/haiku/src/system/kernel/arch/x86/
H A Darch_int.cpp189 struct sigaction action; local
196 if ((sigaction(signalNumber, NULL, &action) == 0
197 && action.sa_handler != SIG_DFL
198 && action.sa_handler != SIG_IGN)
/haiku/src/kits/debugger/controllers/
H A DThreadHandler.cpp303 ThreadHandler::HandleThreadAction(uint32 action, target_addr_t address) argument
311 if (action == MSG_THREAD_STOP
323 if (action == MSG_THREAD_SET_ADDRESS) {
330 if (action != MSG_THREAD_STOP) {
337 switch (action) {
409 if (action == MSG_THREAD_STEP_OUT) {
434 if (action == MSG_THREAD_STEP_INTO) {
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_ns.c592 enum nvme_reservation_register_action action,
610 cmd->cdw10 = action;
622 enum nvme_reservation_release_action action,
640 cmd->cdw10 = action;
652 enum nvme_reservation_acquire_action action,
670 cmd->cdw10 = action;
589 nvme_ns_reservation_register(struct nvme_ns *ns, struct nvme_qpair *qpair, struct nvme_reservation_register_data *payload, bool ignore_key, enum nvme_reservation_register_action action, enum nvme_reservation_register_cptpl cptpl, nvme_cmd_cb cb_fn, void *cb_arg) argument
619 nvme_ns_reservation_release(struct nvme_ns *ns, struct nvme_qpair *qpair, struct nvme_reservation_key_data *payload, bool ignore_key, enum nvme_reservation_release_action action, enum nvme_reservation_type type, nvme_cmd_cb cb_fn, void *cb_arg) argument
649 nvme_ns_reservation_acquire(struct nvme_ns *ns, struct nvme_qpair *qpair, struct nvme_reservation_acquire_data *payload, bool ignore_key, enum nvme_reservation_acquire_action action, enum nvme_reservation_type type, nvme_cmd_cb cb_fn, void *cb_arg) argument
H A Dnvme.h1014 * @param action Registration action
1025 enum nvme_reservation_register_action action,
1036 * @param action Reservation release action
1047 enum nvme_reservation_release_action action,
1058 * @param action Reservation acquire action
1069 enum nvme_reservation_acquire_action action,
/haiku/headers/private/libroot/
H A Dsignal_private.h64 int __sigaction(int signal, const struct sigaction* action,
/haiku/headers/os/interface/
H A DMenuBar.h100 BMenuItem* _Track(int32 *action, int32 startIndex = -1,
/haiku/src/system/kernel/arch/arm64/
H A DVMSAv8TranslationMap.h96 VMAction action, uint64_t attr, vm_page_reservation* reservation);
/haiku/src/apps/people/
H A DPersonWindow.cpp451 BString action; local
456 action = "starting";
460 action = "stoping";
464 printf("Error %s node monitor.\n", action.String());
/haiku/src/system/kernel/arch/x86/64/
H A Dthread.cpp121 get_signal_stack(Thread* thread, iframe* frame, struct sigaction* action, argument
126 && (action->sa_flags & SA_ONSTACK) != 0
336 \param action The signal action specified for the signal to be handled.
342 arch_setup_signal_frame(Thread* thread, struct sigaction* action, argument
386 uint8* userStack = get_signal_stack(thread, frame, action,
/haiku/src/system/kernel/arch/riscv64/
H A Darch_int.cpp257 struct sigaction action; local
266 if ((sigaction(signalNumber, NULL, &action) == 0
267 && action.sa_handler != SIG_DFL
268 && action.sa_handler != SIG_IGN)
/haiku/3rdparty/kallisti5/
H A Dconfigure.py16 help='Target architectures. First provided is primary.', type=str, action='append',
27 parser.add_argument('--use-clang', default=False, action='store_true', help='Assume native clang build')
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py212 irc.reply(t, action = True)
225 irc.reply(t, action = True)
/haiku/src/kits/storage/mime/
H A DDatabase.cpp558 \param verb \c app_verb action for which the new preferred application is applicable
1400 bool largeIcon, int32 action)
1416 err = msg.AddInt32("be:action", action);
1431 int32 action)
1444 err = msg.AddInt32("be:action", action);
1459 Database::_SendMonitorUpdate(int32 which, const char *type, bool largeIcon, int32 action) argument
1472 err = msg.AddInt32("be:action", action);
1399 _SendMonitorUpdate(int32 which, const char *type, const char *extraType, bool largeIcon, int32 action) argument
1430 _SendMonitorUpdate(int32 which, const char *type, const char *extraType, int32 action) argument
1485 _SendMonitorUpdate(int32 which, const char *type, int32 action) argument
[all...]
/haiku/src/kits/interface/
H A DMenuBar.cpp532 int32 action; local
533 menuBar->_Track(&action, data.menuIndex, data.showMenu);
551 BMenuBar::_Track(int32* action, int32 startIndex, bool showMenu) argument
695 if (action != NULL)
696 *action = fState;
/haiku/src/bin/debug/profile/
H A Dprofile.cpp669 struct sigaction action; local
670 action.sa_handler = (__sighandler_t)signal_handler;
671 sigemptyset(&action.sa_mask);
672 action.sa_userdata = NULL;
673 if (sigaction(SIGHUP, &action, NULL) < 0
674 || sigaction(SIGINT, &action, NULL) < 0
675 || sigaction(SIGQUIT, &action, NULL) < 0) {
/haiku/src/servers/debug/
H A DDebugServer.cpp59 action_for_string(const char* action, int32& _action) argument
61 if (strcmp(action, "kill") == 0)
63 else if (strcmp(action, "debug") == 0)
65 else if (strcmp(action, "log") == 0
66 || strcmp(action, "report") == 0) {
68 } else if (strcasecmp(action, "core") == 0)
70 else if (strcasecmp(action, "user") == 0)
/haiku/src/apps/softwareupdater/
H A DUpdateManager.cpp88 int32 action = USER_SELECTION_NEEDED; local
93 reply.FindInt32(kKeyAlertResult, &action);
95 return (update_type)action;
/haiku/headers/private/fs_shell/
H A Dfssh_byte_order.h116 fssh_size_t length, fssh_swap_action action);
/haiku/headers/private/debugger/controllers/
H A DThreadHandler.h71 void HandleThreadAction(uint32 action,

Completed in 566 milliseconds

123456