Searched refs:state (Results 76 - 100 of 689) sorted by relevance

1234567891011>>

/haiku/src/kits/debugger/dwarf/
H A DDwarfFileLoadingState.h31 state; member in struct:DwarfFileLoadingState
/haiku/src/libs/compat/freebsd_network/compat/dev/led/
H A Dled.h13 led_create_state(led_t* func, void* priv, char const* name, int state) argument
/haiku/headers/compatibility/bsd/sys/
H A Dmd4.h37 u_int32_t state[4]; /* state (ABCD) */ member in struct:MD4Context
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DAX88172Device.h27 virtual status_t GetLinkState(ether_link_state *state);
H A DAX88178Device.h27 virtual status_t GetLinkState(ether_link_state *state);
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A D_mutex.h24 cpu_status state; member in struct:mtx::__anon159::__anon161
/haiku/src/tests/system/libroot/posix/
H A Dpthread_signal_test.cpp14 static bool state[4]; variable
26 state[*i] = false;
32 while (state[*i] == false && blocking[*i] == false)
35 state[*i] = true;
92 state[i] = true;
112 if (state[i] == true)
117 while(state[i] == true) {
130 if (state[i] == false) {
138 while(state[i] == false && t-- > 0) {
/haiku/src/preferences/keymap/
H A DKeyboardLayout.h79 void _Error(const parse_state& state,
84 void _SkipCommentsAndSpace(parse_state& state,
87 bool _GetPair(const parse_state& state,
90 bool _AddKeyCodes(const parse_state& state,
93 bool _GetSize(const parse_state& state, const char* data,
95 bool _GetShape(const parse_state& state,
102 bool _ParseTerm(const parse_state& state,
/haiku/src/kits/debugger/arch/x86_64/
H A DCpuStateX8664.cpp24 CpuStateX8664::CpuStateX8664(const x86_64_debug_cpu_state& state) argument
29 SetIntRegister(X86_64_REGISTER_RIP, state.rip);
30 SetIntRegister(X86_64_REGISTER_RSP, state.rsp);
31 SetIntRegister(X86_64_REGISTER_RBP, state.rbp);
32 SetIntRegister(X86_64_REGISTER_RAX, state.rax);
33 SetIntRegister(X86_64_REGISTER_RBX, state.rbx);
34 SetIntRegister(X86_64_REGISTER_RCX, state.rcx);
35 SetIntRegister(X86_64_REGISTER_RDX, state.rdx);
36 SetIntRegister(X86_64_REGISTER_RSI, state.rsi);
37 SetIntRegister(X86_64_REGISTER_RDI, state
151 UpdateDebugState(void* state, size_t size) const argument
[all...]
/haiku/src/kits/debugger/arch/x86/
H A DCpuStateX86.cpp24 CpuStateX86::CpuStateX86(const x86_debug_cpu_state& state) argument
29 SetIntRegister(X86_REGISTER_EIP, state.eip);
30 SetIntRegister(X86_REGISTER_ESP, state.user_esp);
31 SetIntRegister(X86_REGISTER_EBP, state.ebp);
32 SetIntRegister(X86_REGISTER_EAX, state.eax);
33 SetIntRegister(X86_REGISTER_EBX, state.ebx);
34 SetIntRegister(X86_REGISTER_ECX, state.ecx);
35 SetIntRegister(X86_REGISTER_EDX, state.edx);
36 SetIntRegister(X86_REGISTER_ESI, state.esi);
37 SetIntRegister(X86_REGISTER_EDI, state
114 UpdateDebugState(void* state, size_t size) const argument
[all...]
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Dccb.cpp35 ccb->state = SCSI_STATE_FINISHED;
57 if (ccb->state != SCSI_STATE_FINISHED)
58 panic("Tried to free ccb that's still in use (state %d)\n", ccb->state);
60 ccb->state = SCSI_STATE_FREE;
75 ccb->state = SCSI_STATE_FREE;
/haiku/src/libs/iconv/
H A Diso2022_cnext.h32 * The state is composed of one of the following values
59 unsigned int state1 = state & 0xff, state2 = (state >> 8) & 0xff, state3 = (state >> 16) & 0xff, state4 = state >> 24
61 state = (state4 << 24) | (state3 << 16) | (state2 << 8) | state1
66 state_t state = conv->istate; local
157 conv->istate = state;
175 conv->istate = state;
186 conv->istate = state;
297 state_t state = conv->ostate; local
555 state_t state = conv->ostate; local
[all...]
H A Diso2022_cn.h32 * The state is composed of one of the following values
49 unsigned int state1 = state & 0xff, state2 = (state >> 8) & 0xff, state3 = state >> 16
51 state = (state3 << 16) | (state2 << 8) | state1
56 state_t state = conv->istate; local
103 conv->istate = state;
141 conv->istate = state;
163 conv->istate = state;
172 conv->istate = state;
179 state_t state = conv->ostate; local
297 state_t state = conv->ostate; local
[all...]
H A Diso2022_jp2.h32 * The state is composed of one of the following values
49 unsigned int state1 = state & 0xff, state2 = state >> 8
51 state = (state2 << 8) | state1
56 state_t state = conv->istate; local
157 conv->istate = state;
169 conv->istate = state;
190 conv->istate = state;
203 conv->istate = state;
215 conv->istate = state;
304 state_t state = conv->ostate; local
653 state_t state = conv->ostate; local
[all...]
H A Dloop_wchar.h52 mbstate_t state; member in struct:wchar_conv_struct
144 mbstate_t state = wcd->state; local
148 size_t count = wcrtomb(buf+bufcount,*inptr,&state);
177 wcd->state = state;
221 wcd->state = state;
241 memset(&wcd->state,'\0',sizeof(mbstate_t));
244 if (!mbsinit(&wcd->state)) {
245 mbstate_t state = wcd->state; local
347 mbstate_t state = wcd->state; local
[all...]
/haiku/src/kits/textencoding/
H A Dutf8_conversions.cpp44 // reset internal state
79 int32* srcLen, char* dst, int32* dstLen, int32* state,
88 // TODO: this doesn't work, as the state is reset every time!
97 if (state == NULL || *state == 0) {
98 if (state != NULL)
99 *state = 1;
143 // be stored in state variable, so that conversion
171 char* dst, int32* dstLen, int32* state, char substitute)
187 dst, dstLen, state, substitut
78 convert_encoding(const char* from, const char* to, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
170 convert_to_utf8(uint32 srcEncoding, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
192 convert_from_utf8(uint32 dstEncoding, const char* src, int32* srcLen, char* dst, int32* dstLen, int32* state, char substitute) argument
[all...]
/haiku/src/system/libnetwork/netresolv/net/
H A Dbase64.c221 int state, ch; local
228 state = 0;
242 switch (state) {
249 state = 1;
264 state = 2;
279 state = 3;
288 state = 0;
302 switch (state) {
343 if (state != 0)
/haiku/src/tests/servers/app/playground/
H A DObjectView.cpp71 // State* state = State::StateFor(OBJECT_ROUND_RECT, fColor, B_OP_COPY,
73 // state->MouseDown(BPoint(15, 15));
74 // state->MouseMoved(BPoint(255, 305));
75 // state->MouseUp();
77 // AddObject(state);
223 for (int32 i = 0; State* state = (State*)fStateList.ItemAt(i); i++)
224 state->Draw(this);
391 ObjectView::SetState(State* state) argument
393 if (fState != state) {
399 fState = state;
420 AddObject(State* state) argument
435 RemoveObject(State* state) argument
[all...]
/haiku/src/system/kernel/
H A Dlow_resource_manager.cpp83 state_to_string(uint32 state) argument
85 switch (state) {
102 int32 state = B_NO_LOW_RESOURCE; local
105 state = max_c(state, sLowPagesState);
107 state = max_c(state, sLowMemoryState);
109 state = max_c(state, sLowSemaphoresState);
111 state
257 const int32 state = low_resource_state_no_update(B_ALL_KERNEL_RESOURCES); local
388 int32 state = low_resource_state_no_update(resources); local
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DNFS4Inode.h46 status_t WriteStat(OpenState* state, AttrValue* attrs,
50 OpenState* state, ChangeInfo* changeInfo,
53 status_t OpenFile(OpenState* state, int mode,
56 status_t OpenAttr(OpenState* state, const char* name, int mode,
59 status_t ReadFile(OpenStateCookie* cookie, OpenState* state,
62 status_t WriteFile(OpenStateCookie* cookie, OpenState* state,
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Di2c_core.h30 typedef void (*i2c_set_scl)(void *cookie, int state);
31 typedef void (*i2c_set_sda)(void *cookie, int state);
/haiku/headers/os/support/
H A DUTF8.h52 int32* sourceLength, char* dest, int32* destLength, int32* state,
56 int32* sourceLength, char* dest, int32* destLength, int32* state,
/haiku/src/kits/debugger/arch/x86/disasm/
H A DDisassemblerX86.h36 CpuState* state);
41 CpuState* state) const;
/haiku/src/kits/debugger/arch/x86_64/disasm/
H A DDisassemblerX8664.h36 CpuState* state);
40 CpuState* state) const;
/haiku/src/kits/debugger/debugger_interface/
H A DDebugEvent.cpp41 thread_id thread, CpuState* state)
44 fCpuState(state)
84 CpuState* state)
86 CpuStateEvent(B_DEBUGGER_MESSAGE_BREAKPOINT_HIT, team, thread, state)
95 CpuState* state)
97 CpuStateEvent(B_DEBUGGER_MESSAGE_WATCHPOINT_HIT, team, thread, state)
107 CpuState* state)
109 CpuStateEvent(B_DEBUGGER_MESSAGE_SINGLE_STEP, team, thread, state)
40 CpuStateEvent(debug_debugger_message eventType, team_id team, thread_id thread, CpuState* state) argument
83 BreakpointHitEvent(team_id team, thread_id thread, CpuState* state) argument
94 WatchpointHitEvent(team_id team, thread_id thread, CpuState* state) argument
106 SingleStepEvent(team_id team, thread_id thread, CpuState* state) argument

Completed in 84 milliseconds

1234567891011>>