Searched refs:_state (Results 1 - 25 of 85) sorted by relevance

1234

/external/jetty/src/java/org/eclipse/jetty/continuation/
H A DFauxContinuation.java54 private int _state=__HANDLING; field in class:FauxContinuation
116 switch(_state)
160 switch(_state)
165 _state=__SUSPENDING;
178 throw new IllegalStateException(""+_state);
193 switch(_state)
201 _state=__RESUMING;
211 _state=__UNSUSPENDING;
232 switch(_state)
238 _state
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dstate_machine.h47 if (!global || sm->machine ## _state != machine ## _ ## state) { \
52 sm->machine ## _state = machine ## _ ## state;
57 * @_state: State machine state
65 #define SM_ENTRY_M(machine, _state, data) \
66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
69 #machine " entering state " #_state); \
71 sm->data ## _ ## state = machine ## _ ## _state;
76 * @_state: State machine state
83 #define SM_ENTRY_MA(machine, _state, data) \
84 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dstate_machine.h47 if (!global || sm->machine ## _state != machine ## _ ## state) { \
52 sm->machine ## _state = machine ## _ ## state;
57 * @_state: State machine state
65 #define SM_ENTRY_M(machine, _state, data) \
66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
69 #machine " entering state " #_state); \
71 sm->data ## _ ## state = machine ## _ ## _state;
76 * @_state: State machine state
83 #define SM_ENTRY_MA(machine, _state, data) \
84 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dstate_machine.h47 if (!global || sm->machine ## _state != machine ## _ ## state) { \
52 sm->machine ## _state = machine ## _ ## state;
57 * @_state: State machine state
65 #define SM_ENTRY_M(machine, _state, data) \
66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
69 #machine " entering state " #_state); \
71 sm->data ## _ ## state = machine ## _ ## _state;
76 * @_state: State machine state
83 #define SM_ENTRY_MA(machine, _state, data) \
84 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
[all...]
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketParserD08.java61 private State _state; field in class:WebSocketParserD08
88 _state=State.START;
143 while (available<(_state==State.SKIP?1:_bytesNeeded))
152 if (_fragmentFrames && _state==State.DATA)
175 throw new IllegalStateException("FULL: "+_state+" "+_bytesNeeded+">"+_buffer.capacity());
195 if (available<(_state==State.SKIP?1:_bytesNeeded))
201 while (_state!=State.DATA && available>=(_state==State.SKIP?1:_bytesNeeded))
203 switch (_state)
207 _state
[all...]
H A DWebSocketParserRFC6455.java61 private State _state; field in class:WebSocketParserRFC6455
88 _state=State.START;
143 while (available<(_state==State.SKIP?1:_bytesNeeded))
152 if (_fragmentFrames && _state==State.DATA)
175 throw new IllegalStateException("FULL: "+_state+" "+_bytesNeeded+">"+_buffer.capacity());
195 if (available<(_state==State.SKIP?1:_bytesNeeded))
201 while (_state!=State.DATA && available>=(_state==State.SKIP?1:_bytesNeeded))
203 switch (_state)
207 _state
[all...]
H A DWebSocketParserD06.java62 private State _state; field in class:WebSocketParserD06
86 _state=State.START;
123 while (available<(_state==State.SKIP?1:_bytesNeeded))
130 throw new IllegalStateException("FULL: "+_state+" "+_bytesNeeded+">"+_buffer.capacity());
152 while (_state!=State.DATA && available>=(_state==State.SKIP?1:_bytesNeeded))
154 switch (_state)
157 _state=_masked?State.MASK:State.OPCODE;
158 _bytesNeeded=_state.getNeeds();
164 _state
[all...]
/external/autotest/scheduler/
H A Dpidfile_monitor.py42 self._state = drone_manager.PidfileContents()
87 return self._state.process is not None
92 assert self._state.process is not None
93 return self._state.process
102 self._state = drone_manager.PidfileContents()
104 self._state = contents
110 'process': str(self._state.process),
114 self.on_lost_process(self._state.process)
123 if self._state.process is None:
127 if self._state
[all...]
/external/tpm2/generator/
H A Dextract_structures.py40 self._state = self.ANCHOR
66 if self._state != new_state:
67 self._state = new_state
99 if self._state == self.ANCHOR:
101 elif self._state == self.MAYBE_DONE:
106 elif self._state == self.TABLE_NAME:
108 elif tag == 'p' and self._state == self.TABLE_NAME and not self._title:
111 elif self._state == self.TABLE_NAME and tag == 'table':
125 elif self._state == self.MAYBE_DONE and tag == 'tr':
127 elif self._state
[all...]
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSState.java71 private final StateClass _state; field in class:DNSState
75 _state = state;
158 return _state == StateClass.probing;
167 return _state == StateClass.announcing;
176 return _state == StateClass.announced;
185 return _state == StateClass.canceling;
194 return _state == StateClass.canceled;
203 return _state == StateClass.closing;
212 return _state == StateClass.closed;
/external/jetty/src/java/org/eclipse/jetty/util/
H A DUtf8Appendable.java58 protected int _state = UTF8_ACCEPT; field in class:Utf8Appendable
96 _state = UTF8_ACCEPT;
147 if (b > 0 && _state == UTF8_ACCEPT)
155 _codep = _state == UTF8_ACCEPT ? (0xFF >> type) & i : (i & 0x3F) | (_codep << 6);
156 int next = TRANS_TABLE[_state + type];
161 _state=next;
174 String reason = "byte "+TypeUtil.toHexString(b)+" in state "+(_state/12);
176 _state = UTF8_ACCEPT;
181 _state=next;
189 return _state
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/component/
H A DAbstractLifeCycle.java43 private volatile int _state = __STOPPED; field in class:AbstractLifeCycle
61 if (_state == __STARTED || _state == __STARTING)
86 if (_state == __STOPPING || _state == __STOPPED)
107 final int state = _state;
114 return _state == __STARTED;
119 return _state == __STARTING;
124 return _state == __STOPPING;
129 return _state
[all...]
/external/lzma/CPP/7zip/Compress/
H A DLzmaDecoder.cpp35 LzmaDec_Construct(&_state);
44 LzmaDec_Free(&_state, &g_Alloc);
66 RINOK(SResToHRESULT(LzmaDec_Allocate(&_state, prop, size, &g_Alloc)));
78 LzmaDec_Init(&_state);
97 SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
106 SizeT dicPos = _state.dicPos;
123 SRes res = LzmaDec_DecodeToDic(&_state, dicPo
[all...]
H A DLzma2Decoder.cpp31 Lzma2Dec_Construct(&_state);
40 Lzma2Dec_Free(&_state, &g_Alloc);
47 RINOK(SResToHRESULT(Lzma2Dec_Allocate(&_state, prop[0], &g_Alloc)));
68 Lzma2Dec_Init(&_state);
91 SizeT dicPos = _state.decoder.dicPos;
92 SizeT curSize = _state.decoder.dicBufSize - dicPos;
113 SRes res = Lzma2Dec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
117 SizeT outSizeProcessed = _state.decoder.dicPos - dicPos;
123 if (res != 0 || _state.decoder.dicPos == _state
[all...]
/external/autotest/client/cros/cellular/wardmodem/state_machines/
H A Dnetwork_operator_machine.py60 self._state['operator_index'] = self._default_operator_index
61 self._state['automatic_registration'] = 'TRUE'
62 self._state['access_technology'] = self._extract_technology(
110 operator_format = self._state['operator_format']
112 operator_index = self._state['operator_index']
114 if operator_index == self._state.INVALID_VALUE:
133 return self.TECHNOLOGY_CODE[self._state['access_technology']]
H A Dnetwork_registration_machine.py53 self._state['registration_change_message_verbosity'] = 0
88 registration_status = self._state['registration_status']
89 access_technology = self._state['access_technology']
90 verbosity = self._state['registration_change_message_verbosity']
91 technology = self._state['access_technology']
H A Dlevel_indicators_machine.py49 self._state[items[index]] = defaults[index]
62 levels.append(str(self._state[indicator]))
/external/jmdns/src/javax/jmdns/impl/
H A DDNSStatefulObject.java113 protected volatile DNSState _state; field in class:DNSStatefulObject.DefaultImplementation
123 _state = DNSState.PROBING_1;
145 if (this._task == null && this._state == state) {
148 if (this._task == null && this._state == state) {
181 return this._task == task && this._state == state;
198 this._state = state;
222 this.setState(this._state.advance());
243 this.setState(this._state.revert());
316 return this._state.isProbing();
324 return this._state
[all...]
H A DHostInfo.java41 private final HostInfoState _state; field in class:HostInfo
123 this._state = new HostInfoState(dns);
265 buf.append(_state);
288 return this._state.getDns();
296 return this._state.advanceState(task);
304 this._state.removeAssociationWithTask(task);
312 return this._state.revertState();
320 this._state.associateWithTask(task, state);
328 return this._state.isAssociatedWithTask(task, state);
336 return this._state
[all...]
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpParser.java80 protected int _state=STATE_START; field in class:HttpParser
145 return _state;
151 return _state > 0;
157 return _state < 0;
189 return _state == state;
202 if (!_persistent &&(_state==STATE_END || _state==STATE_START))
203 _state=STATE_SEEKING_EOF;
214 if (_state==STATE_END)
216 if (_state!
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/
H A DAsyncContinuation.java90 private int _state; field in class:AsyncContinuation
103 _state=__IDLE;
216 switch(_state)
235 switch(_state)
252 switch(_state)
282 ((_state==__IDLE)?"IDLE":
283 (_state==__DISPATCHED)?"DISPATCHED":
284 (_state==__ASYNCSTARTED)?"ASYNCSTARTED":
285 (_state==__ASYNCWAIT)?"ASYNCWAIT":
286 (_state
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py163 self._state = state
183 if self._state is None:
187 self._state.following = []
188 self._state.errorRecovery = False
189 self._state.lastErrorIndex = -1
190 self._state.syntaxErrors = 0
192 self._state.backtracking = 0
193 if self._state.ruleMemo is not None:
194 self._state.ruleMemo = {}
214 self._state
[all...]
/external/webrtc/webrtc/modules/video_coding/
H A Dframe_buffer.cc23 : _state(kStateEmpty), _nackCount(0), _latestPacketTimeMs(-1) {}
29 _state(rhs._state),
93 if (kStateEmpty == _state) {
200 _state = kStateEmpty;
206 if (_state == state) {
212 assert(_state == kStateEmpty);
218 assert(_state == kStateEmpty || _state == kStateIncomplete ||
219 _state
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.cc57 _state(ParseState::State_TopLevel),
104 switch (_state)
555 _state = ParseState::State_ReportBlockItem;
610 _state = ParseState::State_ReportBlockItem;
614 _state = ParseState::State_TopLevel;
627 _state = ParseState::State_TopLevel;
698 _state = ParseState::State_ExtendedJitterItem;
709 _state = ParseState::State_TopLevel;
731 _state = ParseState::State_TopLevel;
738 _state
[all...]
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_objects.h133 rbug_shader(void *_state) argument
135 if (!_state)
137 return (struct rbug_shader *)_state;
173 rbug_shader_unwrap(void *_state) argument
176 if (!_state)
179 shader = rbug_shader(_state);

Completed in 2141 milliseconds

1234