Searched refs:State (Results 51 - 75 of 124) sorted by relevance

12345

/haiku/src/apps/haikudepot/packagemanagement/
H A DUninstallPackageProcess.cpp74 PackageState state = ref->State();
H A DPackageManager.cpp146 switch (package->State()) {
489 if (package->State() == ACTIVATED || package->State() == INSTALLED)
499 else if (package->State() == NONE
/haiku/src/apps/terminal/
H A DTermView.h166 class State;
173 friend class State;
268 void _NextState(State* state);
374 State* fActiveState;
/haiku/src/apps/haikudepot/ui/
H A DPackageContentsView.cpp252 && (!package.IsSet() || package->State() == fLastPackageState)) {
261 fLastPackageState = package.IsSet() ? package->State() : NONE;
268 && (package->State() == ACTIVATED || package->IsLocalFile())) {
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DThreadListView.cpp120 thread->State(), thread->StoppedReason());
129 if (thread->State() != THREAD_STATE_RUNNING) {
152 switch (thread->State()) {
180 text << "Current State Unknown";
374 fThreadsTable->AddColumn(new StringTableColumn(1, "State",
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutobject.c176 ACPI_GENERIC_STATE *State,
757 ACPI_GENERIC_STATE *State,
786 State->Pkg.ThisTargetObj = NULL;
754 AcpiUtGetElementLength( UINT8 ObjectType, ACPI_OPERAND_OBJECT *SourceObject, ACPI_GENERIC_STATE *State, void *Context) argument
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/dispatcher/
H A Ddswexec.c214 WalkState->ControlState->Common.State = 0;
247 "No predicate ObjDesc=%p State=%p",
267 "Bad predicate (not an integer) ObjDesc=%p State=%p Type=0x%X",
321 WalkState->ControlState->Common.State = ACPI_CONTROL_NORMAL;
398 (WalkState->ControlState->Common.State ==
402 "Exec predicate Op=%p State=%p\n",
405 WalkState->ControlState->Common.State =
884 (WalkState->ControlState->Common.State ==
H A Ddspkginit.c480 ACPI_GENERIC_STATE *State,
510 ElementPtr = State->Pkg.ThisTargetObj;
477 AcpiDsInitPackageElement( UINT8 ObjectType, ACPI_OPERAND_OBJECT *SourceObject, ACPI_GENERIC_STATE *State, void *Context) argument
/haiku/src/kits/debugger/files/
H A DFileManager.cpp157 if (directory->State() == LOCATABLE_ENTRY_UNLOCATED) {
212 || directory->State() != LOCATABLE_ENTRY_UNLOCATED) {
227 if (implicit && entry->State() == LOCATABLE_ENTRY_LOCATED_EXPLICITLY)
278 if (entry->State() == LOCATABLE_ENTRY_LOCATED_EXPLICITLY)
370 && parentDirectory->State() != LOCATABLE_ENTRY_UNLOCATED) {
806 && file->State() != LOCATABLE_ENTRY_LOCATED_EXPLICITLY
807 && file->State() != LOCATABLE_ENTRY_LOCATED_IMPLICITLY) {
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp102 fState(endpoint->State()),
139 fState(endpoint->State()),
166 class State : public AbstractTraceEntry { class in namespace:TCPTracing
168 State(TCPEndpoint* endpoint) function in class:TCPTracing::State
171 fState(endpoint->State())
214 fState(endpoint->State())
239 fState(endpoint->State())
263 fState(endpoint->State())
286 fState(endpoint->State())
544 T(State(thi
[all...]
/haiku/src/system/kernel/vm/
H A Dvm_page.cpp545 fOldState(page->State()),
768 switch (page->State()) {
809 if (sPages[i].State() != PAGE_STATE_UNUSED) {
969 kprintf("state: %s\n", page_state_to_string(page->State()));
1068 page_state_to_string(page->State()),
1100 if (sPages[i].State() > 7) {
1105 uint32 pageState = sPages[i].State();
1533 switch (page->State()) {
1556 page, page->State());
1600 if (pageState == page->State())
[all...]
/haiku/headers/os/drivers/pcmcia/
H A Dbulkmem.h74 u_char State; member in struct:eraseq_entry_t
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.h25 undo_state State(bool* _isRedo) const;
/haiku/src/kits/support/
H A DJob.cpp90 BJob::State() const function in class:BSupportKit::BJob
H A DJobQueue.cpp278 if (dependantJob->State() != B_JOB_STATE_ABORTED) {
/haiku/src/add-ons/kernel/network/ppp/ipcp/
H A DProtocol.h68 ppp_state State() const function in class:IPCP
/haiku/src/kits/debugger/jobs/
H A DExpressionEvaluationJob.cpp97 if (State() == JOB_STATE_WAITING)
/haiku/src/kits/network/libnetservices2/
H A DHttpParser.h55 HttpInputStreamState State() const noexcept { return fStreamState; }
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPInterface.h176 ppp_state State() const function in class:KPPPInterface
177 { return fStateMachine.State(); }
H A DKPPPStateMachine.h48 ppp_state State() const function in class:KPPPStateMachine
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacdispat.h247 ACPI_WALK_STATE *State);
452 ACPI_GENERIC_STATE *State,
/haiku/src/kits/tracker/
H A DFindPanel.h311 enum State { enum in class:BPrivate::DeleteTransientQueriesTask
319 State state;
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp473 if (thread->State() == THREAD_STATE_STOPPED) {
475 UiUtils::ThreadStateToString(thread->State(),
509 if (thread->State() != THREAD_STATE_STOPPED)
877 if (a->State() == b->State())
880 if (a->State() == THREAD_STATE_STOPPED && b->State()
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp378 if (thread->State() != THREAD_STATE_STOPPED)
434 if (thread->State() == THREAD_STATE_STOPPED)
473 if (thread->State() != THREAD_STATE_STOPPED)
/haiku/src/tests/servers/app/playground/
H A DObjectWindow.cpp61 ObjectItem(const char* name, State* object)
67 State* Object() const
71 State* fObject;
396 State* object;

Completed in 264 milliseconds

12345