Searched refs:state (Results 476 - 500 of 689) sorted by relevance

<<11121314151617181920>>

/haiku/src/apps/mail/
H A DMailWindow.h84 virtual void WindowActivated(bool state);
/haiku/src/apps/haikudepot/model/
H A DModel.h111 PackageState state);
H A DModel.cpp101 StateFilter(PackageState state) argument
103 fState(state)
369 Model::SetStateForPackagesByName(BStringList& packageNames, PackageState state) argument
376 packageInfo->SetState(state);
377 HDINFO("did update package [%s] with state [%s]",
378 packageName.String(), package_state_to_string(state));
382 " the state to [%s]", packageName.String(),
383 package_state_to_string(state));
/haiku/src/kits/tracker/
H A DFilePanelPriv.h105 // a default state file the last time it ran.
126 virtual void WindowActivated(bool state);
H A DBackgroundImage.cpp326 BackgroundImage::WorkspaceActivated(BView* view, int32 workspace, bool state) argument
333 if (!state) {
/haiku/src/kits/interface/
H A DStatusBar.cpp180 BStatusBar::WindowActivated(bool state) argument
182 BView::WindowActivated(state);
187 BStatusBar::MakeFocus(bool state) argument
189 BView::MakeFocus(state);
H A DPopUpMenu.cpp249 BPopUpMenu::MakeFocus(bool state) argument
251 BMenu::MakeFocus(state);
H A DPrivateScreen.cpp650 uint32 state = 0; local
658 link.Read<uint32>(&state);
660 return state;
/haiku/headers/os/drivers/bus/
H A DPCI.h40 void (*set_powerstate)(pci_device *device, uint8 state);
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dauich.h109 uint8 state; member in struct:_auich_stream
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp468 // get the initial state of the team
955 ImageDebugInfoLoadingState* state; local
958 if (message->FindPointer("state", (void**)&state) != B_OK)
961 _HandleDebugInfoJobUserInput(state);
1074 TeamDebugger::ValueNodeWriteRequested(ValueNode* node, CpuState* state, argument
1080 fDebuggerInterface->GetArchitecture(), state,
1436 message.AddPointer("state", infoJob->GetLoadingState());
1455 // loading state! Asynchronously due to locking order.
1957 image_debug_info_state state local
2378 _HandleDebugInfoJobUserInput(ImageDebugInfoLoadingState* state) argument
[all...]
/haiku/src/servers/registrar/
H A DTRoster.cpp251 info->state = APP_STATE_REGISTERED;
253 info->state = APP_STATE_PRE_REGISTERED;
343 if (info && info->state == APP_STATE_PRE_REGISTERED) {
346 info->state = APP_STATE_REGISTERED;
742 if (info->state != APP_STATE_REGISTERED)
1246 info->state = APP_STATE_REGISTERED;
1292 if (info->state == APP_STATE_REGISTERED) {
1293 info->state = APP_STATE_UNREGISTERED;
1571 if (info != NULL && info->state == APP_STATE_REGISTERED) {
1596 if (info != NULL && info->state
[all...]
/haiku/src/apps/serialconnect/libvterm/src/
H A Dvterm.c64 if(vt->state)
65 vterm_state_free(vt->state);
/haiku/docs/interface_guidelines/docbook-css/
H A Dcore.css27 sgmltag, shortcut, state, street, structfield, structname, subscript,
/haiku/src/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.cpp283 DIEType* returnType, ValueLocation* location, CpuState* state,
305 type, location, state);
282 CreateReturnValue(FunctionID* functionID, DIEType* returnType, ValueLocation* location, CpuState* state, Variable*& _variable) argument
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp28 BTextView::UndoBuffer::UndoBuffer(BTextView* textView, undo_state state) argument
35 fState(state)
/haiku/src/kits/debugger/debugger_interface/remote/
H A DRemoteDebugRequest.h281 void SetTo(thread_id thread, CpuState* state);
406 void SetTo(CpuState* state);
/haiku/src/kits/debugger/util/
H A DWorker.cpp154 Job::SetState(job_state state) argument
156 fState = state;
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.cpp258 // allows for the indeterminate state of -1.
366 ProcessCoordinatorState state = _Coordinate(); local
369 fListener->CoordinatorChanged(state);
/haiku/headers/os/drivers/
H A DACPI.h286 /* Power state setting */
288 status_t (*prepare_sleep_state)(uint8 state, void (*wakeFunc)(void),
290 status_t (*enter_sleep_state)(uint8 state);
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.h132 uint8 function, uint8* state);
133 void SetPowerstate(PCIDev *device, uint8 state);
/haiku/src/system/kernel/
H A Dteam.cpp289 job_control_state_name(job_control_state state) argument
291 switch (state) {
319 out.Print("team set job control state, team %" B_PRId32 ", "
320 "new state: %s, signal: %d",
357 fState(entry.state),
377 "state: %s, status: %#" B_PRIx32 ", reason: %#x, signal: %d\n",
441 state = TEAM_STATE_BIRTH;
457 job_control_entry->state = JOB_CONTROL_STATE_NONE;
607 /*! \brief Returns the team with the given ID in a locked state.
623 if (team->state >
[all...]
/haiku/src/apps/deskbar/
H A DBarApp.cpp205 prefs.AddInt32("state", fSettings.state);
270 settings.state = fDefaultSettings.state = kExpandoState;
325 settings.state = prefs.GetInt32("state",
326 fDefaultSettings.state);
/haiku/src/add-ons/kernel/drivers/network/ether/virtio/
H A Dvirtio_net.cpp840 TRACE("ioctl: get link state\n");
841 ether_link_state_t state; local
848 state.media = ((status & VIRTIO_NET_S_LINK_UP) != 0 ? IFM_ACTIVE : 0)
850 state.speed = 10000000000ULL;
851 state.quality = 1000;
853 return user_memcpy(buffer, &state, sizeof(ether_link_state_t));
/haiku/headers/cpp/
H A Dstreambuf.h182 // Methods to change the format state.
210 void clear(iostate state = 0) {
211 _state = _strbuf ? state : state|badbit;

Completed in 417 milliseconds

<<11121314151617181920>>