HomeSort by relevance Sort by last modified time
    Searched defs:state (Results 1 - 25 of 2670) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/objc/public/
RTCMediaSource.h 35 // The current state of the RTCMediaSource.
36 @property(nonatomic, assign, readonly) RTCSourceState state; variable
  /bionic/libc/bionic/
mblen.cpp 33 mbstate_t state = {}; local
34 return mbrlen(s, n, &state);
c32rtomb.cpp 37 mbstate_t* state = (ps == nullptr) ? &__private_state : ps; local
41 return mbstate_reset_and_return(1, state);
46 // shift state. Since shift states are not supported, only the null byte is
50 return mbstate_reset_and_return(1, state);
53 if (!mbsinit(state)) {
54 return mbstate_reset_and_return_illegal(EILSEQ, state);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/grpc-grpc/src/objective-c/RxLibrary/
GRXWriter.h 28 * transition to the Started state, send it a startWithWriteable: message.
30 * A writer's state cannot be manually set to this value.
39 * state is set back to Started. The writer might still transition to the Finished state at any
47 * One seldomly wants to set a writer's state to this value, as its writeable isn't notified with
49 * it notify the writeable and then transition to this state.
71 * State transitions take immediate effect if the object is used from a single thread. Subclasses
80 * This property can be used to query the current state of the writer, which determines how it might
81 * currently use its writeable. Some state transitions can be triggered by setting this property to
85 @property(nonatomic) GRXWriterState state; variable
    [all...]
  /external/python/cpython2/Modules/zlib/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/webrtc/webrtc/api/objc/
RTCMediaSource.h 24 /** The current state of the RTCMediaSource. */
25 @property(nonatomic, readonly) RTCSourceState state; variable
  /external/zlib/src/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/elfutils/libdwfl/
dwfl_frame_regs.c 1 /* Get Dwarf Frame state from modules present in DWFL.
39 Dwfl_Frame *state = thread->unwound; local
40 assert (state && state->unwound == NULL);
41 assert (state->initial_frame);
43 if (! __libdwfl_frame_reg_set (state, regno, regs[regno - firstreg]))
55 Dwfl_Frame *state = thread->unwound; local
56 assert (state && state->unwound == NULL);
57 assert (state->initial_frame)
    [all...]
  /external/mesa3d/src/mesa/main/tests/
program_state_string.cpp 33 const gl_state_index state[STATE_LENGTH] = { local
37 char *str = _mesa_program_state_string(state);
40 EXPECT_STREQ("state.depth.range", str);
  /external/skia/include/private/
SkOnce.h 26 auto state = fState.load(std::memory_order_acquire); local
28 if (state == Done) {
33 if (state == NotStarted && fState.compare_exchange_strong(state, Claimed,
47 enum State : uint8_t { NotStarted, Claimed, Done};
  /external/skqp/include/private/
SkOnce.h 26 auto state = fState.load(std::memory_order_acquire); local
28 if (state == Done) {
33 if (state == NotStarted && fState.compare_exchange_strong(state, Claimed,
47 enum State : uint8_t { NotStarted, Claimed, Done};
  /external/strace/tests/
adjtimex.c 43 int state = adjtimex(NULL); local
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
49 state = adjtimex(tx);
50 if (state < 0)
88 state);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/strace/tests-m32/
adjtimex.c 43 int state = adjtimex(NULL); local
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
49 state = adjtimex(tx);
50 if (state < 0)
88 state);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/strace/tests-mx32/
adjtimex.c 43 int state = adjtimex(NULL); local
44 printf("adjtimex(NULL) = %s\n", sprintrc(state));
49 state = adjtimex(tx);
50 if (state < 0)
88 state);
89 printxval(adjtimex_state, (unsigned int) state, NULL);
  /external/u-boot/arch/microblaze/cpu/
exception.c 14 int state = 0; local
18 /* loading excetpion state register ESR */
19 MFS(state, resr);
23 switch (state & 0x1f) { /* mask on exception cause */
51 printf("Unaligned %sword access\n", ((state & 0x800) ? "" : "half"));
52 printf("Unaligned %s access\n", ((state & 0x400) ? "store" : "load"));
53 printf("Register R%x\n", (state & 0x3E) >> 5);
  /external/u-boot/test/dm/
sysreset.c 9 #include <asm/state.h>
17 struct sandbox_state *state = state_get_current(); local
32 state->sysreset_allowed[SYSRESET_WARM] = true;
34 state->sysreset_allowed[SYSRESET_WARM] = false;
40 state->sysreset_allowed[SYSRESET_POWER] = false;
42 state->sysreset_allowed[SYSRESET_POWER] = true;
51 struct sandbox_state *state = state_get_current(); local
54 state->sysreset_allowed[SYSRESET_POWER] = false;
64 state->sysreset_allowed[SYSRESET_COLD] = true;
68 state->sysreset_allowed[SYSRESET_COLD] = false
    [all...]
  /external/v8/src/base/
once.cc 19 AtomicWord state = Acquire_Load(once); local
21 if (state == ONCE_STATE_DONE) {
30 // First, try to change the state from UNINITIALIZED to EXECUTING_FUNCTION
32 state = Acquire_CompareAndSwap(
34 if (state == ONCE_STATE_UNINITIALIZED) {
42 while (state == ONCE_STATE_EXECUTING_FUNCTION) {
48 state = Acquire_Load(once);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient.h 30 didChangeState:(ARDAppClientState)state;
33 didChangeConnectionState:(RTCICEConnectionState)state;
56 @property(nonatomic, readonly) ARDAppClientState state; variable
  /external/autotest/client/tools/
autotest 20 state = os.path.join(autodir, 'control.state') variable
23 if os.path.exists(state):
  /external/boringssl/src/crypto/
abi_self_test.cc 39 abi_test::internal::CallerState state; local
40 RAND_bytes(reinterpret_cast<uint8_t *>(&state), sizeof(state));
45 reinterpret_cast<crypto_word_t>(TestFunction), &state, argv, 8,
109 abi_test::internal::CallerState state; local
110 RAND_bytes(reinterpret_cast<uint8_t *>(&state), sizeof(state));
113 &state, nullptr, 0, 0 /* no breakpoint */);
213 abi_test::internal::CallerState state; local
214 RAND_bytes(reinterpret_cast<uint8_t *>(&state), sizeof(state))
285 abi_test::internal::CallerState state; local
424 abi_test::internal::CallerState state; local
    [all...]
  /external/libxkbcommon/xkbcommon/src/x11/
state.c 27 update_initial_state(struct xkb_state *state, xcb_connection_t *conn,
38 xkb_state_update_mask(state,
54 struct xkb_state *state; local
61 state = xkb_state_new(keymap);
62 if (!state)
65 if (!update_initial_state(state, conn, device_id)) {
66 xkb_state_unref(state);
70 return state;
  /external/perfetto/src/trace_processor/
ftrace_utils_unittest.cc 30 TaskState state; local
31 ASSERT_FALSE(state.is_valid());
35 auto state = TaskState(static_cast<uint16_t>(0u)); local
36 ASSERT_TRUE(state.is_valid());
38 ASSERT_STREQ(state.ToString().data(), "R");
  /external/protobuf/src/google/protobuf/stubs/
once.cc 66 internal::AtomicWord state = internal::Acquire_Load(once); local
68 if (state == ONCE_STATE_DONE) {
76 // First, try to change the state from UNINITIALIZED to EXECUTING_CLOSURE
78 state = internal::Acquire_CompareAndSwap(
80 if (state == ONCE_STATE_UNINITIALIZED) {
88 while (state == ONCE_STATE_EXECUTING_CLOSURE) {
91 state = internal::Acquire_Load(once);
  /external/swiftshader/src/Pipeline/
SetupRoutine.hpp 28 SetupRoutine(const SetupProcessor::State &state);
41 const SetupProcessor::State &state; member in class:sw::SetupRoutine

Completed in 1924 milliseconds

1 2 3 4 5 6 7 8 91011>>