Searched refs:state (Results 126 - 150 of 689) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/glibc/iconv/
H A Dloop.c252 mbstate_t *state = step_data->__statep; local
336 mbstate_t *state = step_data->__statep; local
356 /* Add the bytes from the state to the input buffer. */
357 for (inlen = 0; inlen < (size_t) (state->__count & 7); ++inlen)
358 bytebuf[inlen] = state->__value.__wchb[inlen];
375 state->__value.__wchb[inlen++] = *inptr++;
402 bytes from the state and at least one more, or the character is still
408 assert (inptr - bytebuf > (state->__count & 7));
410 *inptrp += inptr - bytebuf - (state->__count & 7);
415 /* Clear the state buffe
[all...]
H A Dgconv_simple.c123 mbstate_t *state = step_data->__statep; \
125 = __mbrtowc((wchar_t*)outptr, (const char*)inptr, inLen, state); \
166 mbstate_t *state = step_data->__statep; \
167 size_t result = __wcrtomb((char*)outptr, *(wchar_t*)inptr, state); \
/haiku/src/kits/support/
H A DPointerList.cpp202 void* state)
204 , fState(state)
295 void *state)
297 PointerListHelperWithState helper(compareFunc, state);
312 void *state)
314 PointerListHelperWithState helper(compareFunc, state);
330 GenericCompareFunctionWithState compareFunc, void *state) const
332 PointerListHelperWithState helper(compareFunc, state);
348 GenericCompareFunctionWithState compareFunc, void *state) const
350 PointerListHelperWithState helper(compareFunc, state);
200 PointerListHelperWithState( _PointerList_::GenericCompareFunctionWithState compareFunc, void* state) argument
294 SortItems(GenericCompareFunctionWithState compareFunc, void *state) argument
311 HSortItems(GenericCompareFunctionWithState compareFunc, void *state) argument
[all...]
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h127 void vterm_input_push_char(VTerm *vt, VTermModifier state, uint32_t c);
128 void vterm_input_push_key(VTerm *vt, VTermModifier state, VTermKey key);
198 void vterm_state_reset(VTermState *state, int hard);
199 void vterm_state_set_callbacks(VTermState *state, const VTermStateCallbacks *callbacks, void *user);
200 void vterm_state_get_cursorpos(const VTermState *state, VTermPos *cursorpos);
201 void vterm_state_get_default_colors(const VTermState *state, VTermColor *default_fg, VTermColor *default_bg);
202 void vterm_state_get_palette_color(const VTermState *state, int index, VTermColor *col);
203 void vterm_state_set_default_colors(VTermState *state, const VTermColor *default_fg, const VTermColor *default_bg);
204 void vterm_state_set_palette_color(VTermState *state, int index, const VTermColor *col);
205 void vterm_state_set_bold_highbright(VTermState *state, in
[all...]
/haiku/src/servers/net/
H A DDHCPClient.cpp103 state(0),
110 uint8 state; member in struct:dhcp_option_cookie
211 if (cookie.state == 0) {
212 cookie.state++;
218 switch (cookie.state) {
237 cookie.state++;
240 switch (cookie.state) {
267 // no options in this state, try next one
555 DHCPClient::_Negotiate(dhcp_state state) argument
557 if (state
637 _GotMessage(dhcp_state& state, dhcp_message* message) argument
697 _StateTransition(int socket, dhcp_state& state) argument
885 _PrepareMessage(dhcp_message& message, dhcp_state state) argument
953 _TimeoutShift(int socket, dhcp_state& state, socket_timeout& timeout) argument
[all...]
/haiku/src/bin/network/ftpd/
H A Dmd5c.c140 context->state[0] = 0x67452301;
141 context->state[1] = 0xefcdab89;
142 context->state[2] = 0x98badcfe;
143 context->state[3] = 0x10325476;
176 MD5Transform (context->state, context->buffer);
179 MD5Transform (context->state, &input[i]);
227 /* Store state in digest */
228 Encode (digest, context->state, 16);
234 /* MD5 basic transformation. Transforms state based on block. */
237 MD5Transform (state, bloc
[all...]
/haiku/src/libs/compat/freebsd_iflib/
H A Dmd5c.c141 context->state[0] = 0x67452301;
142 context->state[1] = 0xefcdab89;
143 context->state[2] = 0x98badcfe;
144 context->state[3] = 0x10325476;
177 MD5Transform (context->state, context->buffer);
180 MD5Transform (context->state, &input[i]);
225 /* Store state in digest */
226 Encode (digest, context->state, MD5_DIGEST_LENGTH);
232 /* MD5 basic transformation. Transforms state based on block. */
235 MD5Transform (state, bloc
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dinode.h40 * Defined bits for the state field in the ntfs_inode structure.
57 #define test_nino_flag(ni, flag) test_bit(NI_##flag, (ni)->state)
58 #define set_nino_flag(ni, flag) set_bit(NI_##flag, (ni)->state)
59 #define clear_nino_flag(ni, flag) clear_bit(NI_##flag, (ni)->state)
62 test_and_set_bit(NI_##flag, (ni)->state)
64 test_and_clear_bit(NI_##flag, (ni)->state)
110 unsigned long state; /* NTFS specific flags describing this inode. member in struct:_ntfs_inode
117 * Only valid if NI_AttrList is set in state.
162 /* only if NI_v3_Extensions is set in state */
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.cpp50 SpecificImageDebugInfoLoadingState* state)
52 return dynamic_cast<DwarfImageDebugInfoLoadingState*>(state) != NULL;
58 SpecificImageDebugInfoLoadingState* state, UserInterface* interface)
61 = dynamic_cast<DwarfImageDebugInfoLoadingState*>(state);
65 "non-dwarf state object %p.", state);
139 fileState.state = DWARF_FILE_LOADING_STATE_USER_INPUT_PROVIDED;
49 SupportsState( SpecificImageDebugInfoLoadingState* state) argument
57 HandleState( SpecificImageDebugInfoLoadingState* state, UserInterface* interface) argument
/haiku/src/kits/mail/
H A DMailContainer.cpp226 LookingFor state; local
272 state = INITIAL_DASHES; // Starting just after a new line so don't search for it.
274 || (state == LAST_NEWLINE /* No EOF test in LAST_NEWLINE state */))
312 switch (state) {
319 state = INITIAL_DASHES;
322 state = INITIAL_DASHES;
330 state = BOUNDARY_BODY;
332 state = FIRST_NEWLINE;
337 state
[all...]
/haiku/src/kits/debugger/debug_info/
H A DFunction.cpp33 Function::SetSourceCode(FileSourceCode* source, function_source_state state) argument
35 if (source == fSourceCode && state == fSourceCodeState)
42 fSourceCodeState = state;
H A DImageDebugLoadingStateHandlerRoster.h34 SpecificImageDebugInfoLoadingState* state,
/haiku/src/kits/debugger/jobs/
H A DLoadSourceCodeJob.cpp94 function_source_state state local
99 function->SetSourceCode(functionSourceCode, state);
102 fFunctionInstance->SetSourceCode(sourceCode, state);
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_cancel.cpp63 pthread_setcancelstate(int state, int *_oldState) argument
71 if (state == PTHREAD_CANCEL_ENABLE) {
74 } else if (state == PTHREAD_CANCEL_DISABLE) {
80 // return the old state
/haiku/src/apps/haikudepot/packagemanagement/
H A DUninstallPackageProcess.cpp74 PackageState state = ref->State(); local
88 ref->SetState(state);
97 ref->SetState(state);
/haiku/src/kits/debugger/dwarf/
H A DDwarfManager.cpp60 // only preserve state in the failure case if an external
63 _state.state = _state.externalInfoFileName.IsEmpty()
73 _state.state = DWARF_FILE_LOADING_STATE_FAILED;
82 _state.state = DWARF_FILE_LOADING_STATE_SUCCEEDED;
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A Dmd5c.c109 context->state[0] = 0x67452301;
110 context->state[1] = 0xefcdab89;
111 context->state[2] = 0x98badcfe;
112 context->state[3] = 0x10325476;
142 MD5_Transform (context->state, context->buffer);
145 MD5_Transform (context->state, &input[i]);
179 /* Store state in digest */
180 Encode (digest, context->state, 16);
187 /* MD5 basic transformation. Transforms state based on block.
189 static void MD5_Transform (UINT4 state[ argument
[all...]
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewStateHistory.h29 VariablesViewState* state);
/haiku/src/apps/mediaplayer/interface/
H A DPlayPauseButton.h37 void _SetPlaybackState(uint32 state);
/haiku/src/libs/posix_error_mapper/
H A Dpthread_thread.cpp47 (int state, int *_oldState),
48 return B_TO_POSITIVE_ERROR(sReal_pthread_setcancelstate(state, _oldState));
/haiku/headers/private/debugger/arch/
H A DCpuState.h26 virtual status_t UpdateDebugState(void* state, size_t size)
/haiku/src/preferences/repositories/
H A DRepoRow.h34 void SetTaskState(uint32 state);
/haiku/src/system/libroot/posix/crypt/
H A Dpbkdf2.h68 uint32_t state[8]; member in struct:__anon1997
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DAX88772Device.h27 virtual status_t GetLinkState(ether_link_state *state);
/haiku/src/apps/terminal/
H A DHistoryBuffer.cpp123 cell.attributes.state |= A_WIDTH;
150 attributes.state = cell.attributes.state & CHAR_ATTRIBUTES;
153 if (attributes.state != 0)
180 if (attributes.state != 0) {
185 attributes.state = cell.attributes.state & CHAR_ATTRIBUTES;
190 if (attributes.state != 0) {
201 if (attributes.state != 0)

Completed in 192 milliseconds

1234567891011>>