Searched refs:state (Results 51 - 75 of 689) sorted by relevance

1234567891011>>

/haiku/src/libs/libtelnet/
H A Denc_des.c73 int state[2]; member in struct:fb
146 fbp->state[0] = fbp->state[1] = FAILED;
178 int state; local
187 state = fbp->state[dir-1];
188 if (state == FAILED)
189 state = IN_PROGRESS;
193 state = fbp->state[di
254 int state = fbp->state[DIR_DECRYPT-1]; local
336 int state = fbp->state[DIR_ENCRYPT-1]; local
427 int state = fbp->state[dir-1]; local
[all...]
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Dsha2.c259 memcpy(context->state.st32, sha256_initial_hash_value,
292 SHA256Transform(u_int32_t *state, const u_int8_t *data) argument
299 a = state[0];
300 b = state[1];
301 c = state[2];
302 d = state[3];
303 e = state[4];
304 f = state[5];
305 g = state[6];
306 h = state[
350 SHA256Transform(u_int32_t *state, const u_int8_t *data) argument
571 SHA512Transform(u_int64_t *state, const u_int8_t *data) argument
628 SHA512Transform(u_int64_t *state, const u_int8_t *data) argument
[all...]
/haiku/src/libs/iconv/
H A Dutf16.h33 /* The state is 0 if big-endian, 1 if little-endian. */
37 state_t state = conv->istate; local
40 ucs4_t wc = (state ? s[0] + (s[1] << 8) : (s[0] << 8) + s[1]);
43 state ^= 1;
46 ucs4_t wc2 = (state ? s[2] + (s[3] << 8) : (s[2] << 8) + s[3]);
50 conv->istate = state;
58 conv->istate = state;
63 conv->istate = state;
71 /* The state is 0 at the beginning, 1 after the BOM has been written. */
H A Dutf32.h33 /* The state is 0 if big-endian, 1 if little-endian. */
37 state_t state = conv->istate; local
40 ucs4_t wc = (state
46 state ^= 1;
50 conv->istate = state;
57 conv->istate = state;
62 /* The state is 0 at the beginning, 1 after the BOM has been written. */
H A Diso2022_kr.h37 * The state is composed of one of the following values
48 unsigned int state1 = state & 0xff, state2 = state >> 8
50 state = (state2 << 8) | state1
55 state_t state = conv->istate; local
107 conv->istate = state;
121 conv->istate = state;
130 conv->istate = state;
137 state_t state = conv->ostate; local
159 conv->ostate = state;
199 state_t state = conv->ostate; local
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeRegular.cpp24 Inode::CreateState(const char* name, int mode, int perms, OpenState* state, argument
27 ASSERT(state != NULL);
34 status_t result = CreateFile(name, mode, perms, state, &changeInfo,
57 state->fFileSystem = fFileSystem;
58 state->fInfo = fileInfo;
59 state->fMode = mode & O_RWMASK;
76 OpenState* state = new(std::nothrow) OpenState; local
77 if (state == NULL)
80 status_t result = CreateState(name, mode, perms, state, data);
82 delete state;
109 OpenState* state = new(std::nothrow) OpenState; local
254 OpenState* state = new OpenState; local
323 OpenState* state = cookie != NULL ? cookie->fOpenState : fOpenState; local
373 OpenState* state = fOpenState; local
[all...]
H A DNFS4Object.cpp31 OpenStateCookie* cookie, OpenState* state, uint32* sequence)
43 state = cookie->fOpenState;
153 if (state != NULL) {
157 fFileSystem->NFSServer()->ServerRebooted(state->fClientID);
181 if (state != NULL) {
182 fFileSystem->NFSServer()->ClientId(state->fClientID, true);
194 NFS4Object::ConfirmOpen(const FileHandle& fh, OpenState* state, argument
197 ASSERT(state != NULL);
208 req.OpenConfirm(*sequence, state->fStateID, state
30 HandleErrors(uint32& attempt, uint32 nfs4Error, RPC::Server* server, OpenStateCookie* cookie, OpenState* state, uint32* sequence) argument
[all...]
H A DNFS4Object.h23 OpenState* state = NULL, uint32* sequence = NULL);
26 OpenState* state, uint32* sequence);
/haiku/src/apps/debuganalyzer/gui/thread_window/
H A DActivityPage.cpp85 ScheduleState state = UNKNOWN; local
87 // get the first event and guess the initial state
105 state = READY;
115 state = STILL_RUNNING;
117 state = RUNNING;
129 state = WAITING;
139 state = READY;
164 if (state == READY) {
167 } else if (state == PREEMPTED) {
171 } else if (state
[all...]
/haiku/src/apps/bootmanager/
H A DWizardController.cpp62 int state = NextState(fStack->State()); local
63 if (state < 0)
66 _PushState(state);
96 WizardController::_PushState(int32 state) argument
98 fStack = new StateStack(state, fStack);
/haiku/src/servers/net/
H A DDHCPClient.h47 status_t _Negotiate(dhcp_state state);
48 status_t _GotMessage(dhcp_state& state,
50 status_t _StateTransition(int socket, dhcp_state& state);
55 dhcp_state state);
59 bool _TimeoutShift(int socket, dhcp_state& state,
/haiku/src/bin/unzip/
H A Dtimezone.h39 struct state { struct
69 int GetPlatformLocalTimezone OF((register struct state * ZCONST sp,
70 void (*fill_tzstate_from_rules)(struct state * ZCONST sp_res,
/haiku/src/kits/debugger/model/
H A DThread.cpp68 Thread::SetState(uint32 state, uint32 reason, const BString& info) argument
70 if (state == fState && reason == fStoppedReason)
73 fState = state;
77 // unset CPU state and stack trace, if the thread isn't stopped
90 Thread::SetCpuState(CpuState* state) argument
92 if (state == fCpuState)
98 fCpuState = state;
H A DVariable.cpp16 ValueLocation* location, CpuState* state)
22 fCpuState(state)
15 Variable(ObjectID* id, const BString& name, Type* type, ValueLocation* location, CpuState* state) argument
/haiku/src/add-ons/kernel/drivers/graphics/vesa/
H A Dvesa_private.h50 extern void vesa_identify_bios(bios_state* state, vesa_shared_info* sharedInfo);
52 status_t vbe_call_prepare(bios_state** state);
53 status_t vbe_get_mode_info(bios_state* state, uint16 mode, struct vbe_mode_info* modeInfo);
55 status_t vbe_set_mode(bios_state* state, uint16 mode);
56 status_t vbe_set_bits_per_gun(bios_state* state, vesa_info& info, uint8 bits);
59 void vbe_call_finish(bios_state* state);
H A Dvesa.cpp30 /*! Loads the BIOS module and sets up a state for it. The BIOS module is only
34 vbe_call_prepare(bios_state** state) argument
45 status = sBIOSModule->prepare(state);
47 dprintf(DEVICE_NAME ": failed to prepare BIOS state: %s\n",
57 vbe_call_finish(bios_state* state) argument
59 sBIOSModule->finish(state);
124 vbe_get_mode_info(bios_state* state, uint16 mode, struct vbe_mode_info* modeInfo) argument
126 void* vbeModeInfo = sBIOSModule->allocate_mem(state,
132 uint32 physicalAddress = sBIOSModule->physical_address(state, vbeModeInfo);
139 status_t status = sBIOSModule->interrupt(state,
158 vbe_set_mode(bios_state* state, uint16 mode) argument
197 vbe_get_dpms_capabilities(bios_state* state, uint32& vbeMode, uint32& mode) argument
229 vbe_set_bits_per_gun(bios_state* state, vesa_info& info, uint8 bits) argument
418 bios_state* state; local
514 bios_state* state; local
564 bios_state* state; local
606 bios_state* state; local
[all...]
/haiku/src/apps/poorman/
H A DPoorManSiteView.h21 void SetSendDirValue(bool state) argument
23 if (state)
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.h26 SpecificImageDebugInfoLoadingState* state);
29 SpecificImageDebugInfoLoadingState* state,
/haiku/src/system/kernel/scheduler/
H A Dscheduler_tracing.cpp137 ScheduleState state = UNKNOWN; local
169 if (state == READY) {
179 } else if (state == PREEMPTED) {
191 if (state == STILL_RUNNING) {
193 state = RUNNING;
196 if (state != RUNNING) {
198 state = RUNNING;
204 if (state == STILL_RUNNING) {
214 state = PREEMPTED;
216 } else if (state
[all...]
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp330 KeyboardLayout::_Error(const parse_state& state, const char* reason, ...) argument
335 fprintf(stderr, "Syntax error in line %" B_PRId32 ": ", state.line);
378 KeyboardLayout::_SkipCommentsAndSpace(parse_state& state, const char*& data) argument
383 state.line++;
426 KeyboardLayout::_GetPair(const parse_state& state, const char*& data, argument
437 _Error(state, "no valid pair");
459 KeyboardLayout::_AddKeyCodes(const parse_state& state, BPoint& rowLeftTop, argument
468 _Error(state, "empty key count too large");
519 _Error(state, "key count too large");
537 _Error(state, "invali
583 _GetSize(const parse_state& state, const char* data, float& x, float& y, float* _secondRow) argument
607 _GetShape(const parse_state& state, const char* data, Key& key) argument
740 _ParseTerm(const parse_state& state, const char*& data, BString& term, VariableMap& variables) argument
774 parse_state state = {kPairs, 1}; local
[all...]
/haiku/headers/private/net/
H A Dnet_stat.h22 char state[B_OS_NAME_LENGTH]; member in struct:net_stat
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Dcx23882_i2c.c30 set_scl(void *cookie, int state) argument
33 if (state)
43 set_sda(void *cookie, int state) argument
46 if (state)
/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DACM.h21 virtual status_t SetControlLineState(uint16 state);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dmd5.h37 UINT4 state[4]; /* state (ABCD) */ member in struct:__anon2557
/haiku/src/servers/registrar/
H A DRosterAppInfo.h18 application_state state; member in struct:RosterAppInfo
20 // token is meaningful only if state is APP_STATE_PRE_REGISTERED and

Completed in 165 milliseconds

1234567891011>>