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

1 2 3 4 5 6 78 91011>>

  /external/brotli/c/fuzz/
decode_fuzzer.c 29 BrotliDecoderState* state = BrotliDecoderCreateInstance(0, 0, 0); local
45 state, &avail_in, &next_in, &avail_out, &next_out, &total_out);
55 BrotliDecoderDestroyInstance(state);
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 19 const ProgramStateRef state = C.getState(); local
22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
  /external/clang/lib/StaticAnalyzer/Checkers/
ReturnPointerRangeChecker.cpp 37 ProgramStateRef state = C.getState(); local
43 SVal V = state->getSVal(RetE, C.getLocationContext());
59 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(),
62 ProgramStateRef StInBound = state->assumeInBound(Idx, NumElements, true);
63 ProgramStateRef StOutBound = state->assumeInBound(Idx, NumElements, false);
  /external/clang/test/Sema/
parentheses.cpp 119 static int state; member in struct:PR20735::X
151 if (5 & x.state != 0) {}
173 if (5 & X::state != 0) {}
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
ParentComponent.java 23 Object state(); method in interface:ParentComponent
SubcomponentWithRepeatedModule.java 23 Object state(); method in interface:SubcomponentWithRepeatedModule
  /external/expat/xmlwf/
ct.c 39 int state = init; local
49 if (state == inAtom)
53 if (state == inAtom)
55 if (state != inString)
56 state++;
59 if (state > init)
60 --state;
61 else if (state != inString)
67 if (state == inAtom)
69 if (state == init
    [all...]
xmlmime.c 41 int state = init; local
46 if (state == inAtom)
53 if (state == inAtom)
57 if (state == inAtom)
59 if (state != inString)
60 state++;
63 if (state > init)
64 --state;
65 else if (state != inString)
71 if (state == inAtom
    [all...]
  /external/flac/libFLAC/include/protected/
stream_decoder.h 42 FLAC__StreamDecoderState state; member in struct:FLAC__StreamDecoderProtected
  /external/google-breakpad/src/processor/
microdump_processor_unittest.cc 80 ProcessState* state) {
86 return processor.Process(microdump_contents, state);
89 void AnalyzeDump(const string& microdump_file_name, ProcessState* state,
97 ProcessMicrodump(symbols_file, microdump_contents, state);
100 ASSERT_TRUE(state->crashed());
101 ASSERT_EQ(0, state->requesting_thread());
102 ASSERT_EQ(1U, state->threads()->size());
104 ASSERT_EQ(2, state->system_info()->cpu_count);
105 ASSERT_EQ("android", state->system_info()->os_short);
106 ASSERT_EQ("Android", state->system_info()->os)
113 ProcessState state; local
120 ProcessState state; local
127 ProcessState state; local
148 ProcessState state; local
157 ProcessState state; local
175 ProcessState state; local
    [all...]
  /external/grpc-grpc/include/grpcpp/impl/codegen/
channel_interface.h 60 /// Get the current channel state. If the channel is in IDLE and
64 /// Return the \a tag on \a cq when the channel state is changed or \a
65 /// deadline expires. \a GetState needs to called to get the current state.
73 /// Blocking wait for channel state change or \a deadline expiration.
74 /// \a GetState needs to called to get the current state.
84 grpc_connectivity_state state; local
85 while ((state = GetState(true)) != GRPC_CHANNEL_READY) {
86 if (!WaitForStateChange(state, deadline)) return false;
  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
frame_settings.h 38 grpc_chttp2_settings_parse_state state; member in struct:__anon23017
  /external/grpc-grpc/test/core/end2end/tests/
connectivity.cc 50 grpc_connectivity_state state; local
99 state = grpc_channel_check_connectivity_state(f.client, 0);
100 GPR_ASSERT(state == GRPC_CHANNEL_TRANSIENT_FAILURE ||
101 state == GRPC_CHANNEL_CONNECTING);
109 state = grpc_channel_check_connectivity_state(f.client, 0);
110 GPR_ASSERT(state == GRPC_CHANNEL_TRANSIENT_FAILURE ||
111 state == GRPC_CHANNEL_CONNECTING);
122 while (state != GRPC_CHANNEL_READY) {
124 f.client, state, grpc_timeout_seconds_to_deadline(3), f.cq, tag(4));
127 state = grpc_channel_check_connectivity_state(f.client, 0)
    [all...]
ping.cc 36 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; local
72 while (state != GRPC_CHANNEL_READY) {
74 f.client, state,
81 state = grpc_channel_check_connectivity_state(f.client, 0);
82 GPR_ASSERT(state == GRPC_CHANNEL_READY ||
83 state == GRPC_CHANNEL_CONNECTING ||
84 state == GRPC_CHANNEL_TRANSIENT_FAILURE);
  /external/grpc-grpc/test/core/transport/
connectivity_state_test.cc 77 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; local
82 GPR_ASSERT(grpc_connectivity_state_notify_on_state_change(&tracker, &state,
85 GPR_ASSERT(state == GRPC_CHANNEL_IDLE);
89 GPR_ASSERT(state == GRPC_CHANNEL_IDLE);
99 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; local
104 GPR_ASSERT(grpc_connectivity_state_notify_on_state_change(&tracker, &state,
107 GPR_ASSERT(state == GRPC_CHANNEL_IDLE);
112 GPR_ASSERT(state == GRPC_CHANNEL_SHUTDOWN);
120 grpc_connectivity_state state = GRPC_CHANNEL_SHUTDOWN; local
126 &tracker, &state, closure))
    [all...]
  /external/grpc-grpc/third_party/nanopb/tests/io_errors/
io_errors.c 19 faulty_stream_t *state = stream->state; local
23 if (state->fail_after == 0)
25 state->fail_after--;
26 *buf++ = *state->buffer++;
33 faulty_stream_t *state = stream->state; local
37 if (state->fail_after == 0)
39 state->fail_after--;
40 *state->buffer++ = *buf++
    [all...]
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
ConnectivityStateInfo.java 26 * <p>If the state is {@code TRANSIENT_FAILURE}, the status is never {@code OK}. For other states,
31 private final ConnectivityState state; field in class:ConnectivityStateInfo
35 * Returns an instance for a state that is not {@code TRANSIENT_FAILURE}.
37 * @throws IllegalArgumentException if {@code state} is {@code TRANSIENT_FAILURE}.
39 public static ConnectivityStateInfo forNonError(ConnectivityState state) {
41 state != TRANSIENT_FAILURE,
42 "state is TRANSIENT_ERROR. Use forError() instead");
43 return new ConnectivityStateInfo(state, Status.OK);
55 * Returns the state.
58 return state;
    [all...]
  /external/guice/core/src/com/google/inject/internal/
ScopeBindingProcessor.java 53 ScopeBinding existing = injector.state.getScopeBinding(annotationType);
59 injector.state.putScopeBinding(annotationType, command);
  /external/guice/extensions/service/src/com/google/inject/service/
CompositeService.java 43 * Represents the state of this composite service. Will equal FAILED even if only one component
47 private volatile Service.State compositeState;
82 public Future<State> start() {
83 final List<Future<State>> tasks = Lists.newArrayList();
88 return futureGet(tasks, State.STARTED);
92 public Future<State> stop() {
93 final List<Future<State>> tasks = Lists.newArrayList();
98 return futureGet(tasks, State.STOPPED);
102 public State state() { method in class:CompositeService
    [all...]
Service.java 23 * An object with an operational state, asynchronous {@link #start()} and {@link #stop()} lifecycle
24 * methods to transition in and out of this state. Example services include http servers, RPC
36 * the resultant state. If the service fails to start, {@link Future#get} will throw an {@link
40 Future<State> start();
43 * If the service is {@link State#STARTED} initiates service shutdown and returns immediately. If
48 * either returns {@link State#STOPPED} or throws an {@link ExecutionException}. If it has
51 Future<State> stop();
54 * Returns the current state of this service. One of {@link State} possible values, or null if
55 * this is a brand new object, i.e., has not been put into any state yet
57 State state(); method in interface:Service
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeRegex.java 45 // Note: we don't currently have any state, but intend to in the future,
92 int state = 0; // 1 = after \ local
101 switch (state) {
109 state = 1;
121 state = 2;
123 state = 0;
129 state = 3;
135 state = 0;
137 state = 2;
  /external/icu/icu4c/source/i18n/
uitercollationiterator.h 69 state(ITER_CHECK_FWD), start(startIndex),
116 enum State {
148 State state; member in class:FCDUIterCollationIterator
utf8collationiterator.h 85 state(CHECK_FWD), start(p),
137 enum State {
162 State state; member in class:FCDUTF8CollationIterator
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeRegex.java 43 // Note: we don't currently have any state, but intend to in the future,
90 int state = 0; // 1 = after \ local
99 switch (state) {
107 state = 1;
119 state = 2;
121 state = 0;
127 state = 3;
133 state = 0;
135 state = 2;
  /external/iproute2/ip/
iplink_bond_slave.c 37 unsigned int state = rta_getattr_u8(tb); local
39 if (state >= ARRAY_SIZE(slave_states))
40 print_int(PRINT_ANY, "state_index", "state %d ", state);
43 "state",
44 "state %s ",
45 slave_states[state]);

Completed in 700 milliseconds

1 2 3 4 5 6 78 91011>>