Searched refs:currentState (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10/IOUSBMassStorageClass-370.0.4/
H A DUSBMassStorageClassBulkOnly.cpp167 boRequestBlock->currentState = nextExecutionState;
260 boRequestBlock->currentState = nextExecutionState;
282 boRequestBlock->currentState = kBulkOnlyCheckCBWBulkStall;
308 boRequestBlock->currentState = nextExecutionState;
376 boRequestBlock->currentState = nextExecutionState;
410 STATUS_LOG ( ( 4, "%s[%p]: BulkOnlyExecuteCommandCompletion Entered with boRequestBlock=%p currentState=%d resultingStatus=0x%x", getName(), this, boRequestBlock, boRequestBlock->currentState, resultingStatus ) );
460 ( uintptr_t ) boRequestBlock->currentState, ( uintptr_t ) boRequestBlock->request );
476 switch ( boRequestBlock->currentState )
502 boRequestBlock->currentState
[all...]
H A DUSBMassStorageClassCBI.cpp112 theCBIRequestBlock->currentState = kCBIExecuteCommand;
177 cbiRequestBlock->currentState = nextExecutionState;
226 cbiRequestBlock->currentState = nextExecutionState;
262 cbiRequestBlock->currentState = nextExecutionState;
298 cbiRequestBlock->currentState = nextExecutionState;
375 ( unsigned int ) cbiRequestBlock->currentState, ( uintptr_t ) cbiRequestBlock->request );
377 switch ( cbiRequestBlock->currentState )
H A DIOUSBMassStorageClass.h87 UInt32 currentState; member in struct:CBIRequestBlock
124 UInt32 currentState; member in struct:BulkOnlyRequestBlock
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DStateTableProcessor.cpp49 ByteOffset currentState = stateArrayOffset; local
73 LEReferenceToArrayOf<EntryTableIndex> stateArray(stHeader, success, currentState, LE_UNBOUNDED_ARRAY);
76 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
H A DStateTableProcessor2.cpp59 le_uint16 currentState = 0;
98 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
100 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex); // return a zero-based index instead of a byte offset
133 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses,success));
135 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
173 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
175 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
204 EntryTableIndex2 entryTableIndex = SWAPW(stateArray(classCode + currentState * nClasses, success));
206 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex, success);
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSMainThreadExecState.h47 static JSC::ExecState* currentState() function in class:WebCore::JSMainThreadExecState
55 JSMainThreadExecState currentState(exec);
61 JSMainThreadExecState currentState(exec);
67 JSMainThreadExecState currentState(exec);
H A DScriptController.cpp289 ExecState* exec = JSMainThreadExecState::currentState();
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducnv_ct.c341 COMPOUND_TEXT_CONVERTERS currentState, tmpState; local
348 currentState = myConverterData->state;
397 if (tmpState != DO_SEARCH && currentState != tmpState) {
399 currentState = tmpState;
400 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
401 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i];
411 if (currentState != tmpState) {
412 currentState = tmpState;
413 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) {
414 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][
469 COMPOUND_TEXT_CONVERTERS currentState, tmpState; local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DLayoutState.cpp182 for (LayoutState* currentState = m_next.get(); currentState; currentState = currentState->m_next.get()) {
183 if (currentState->m_lineGrid == currentGrid)
185 currentGrid = currentState->m_lineGrid;
190 m_lineGridOffset = currentState->m_lineGridOffset;
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DDFAPacketizerEmitter.cpp64 // Specifically, currentState is a set of bit-masks.
70 // From the initial state (currentState = 0x00), if we add instruction class
71 // L_or_M we will transition to a state with currentState = [0x01, 0x10]. This
137 State *currentState; member in class:__anon10882::DFA
164 DFA::DFA(): currentState(NULL) {}
194 // Iterate over all resource states in currentState.
252 assert(currentState && "Missing current state");
253 currentState->isInitial = true;
/macosx-10.10/WebCore-7600.1.25/page/
H A DPageConsole.cpp100 if (!parser->isWaitingForScripts() && !JSMainThreadExecState::currentState()) {
106 addMessage(source, level, message, url, line, column, 0, JSMainThreadExecState::currentState(), requestIdentifier);
H A DContentSecurityPolicy.cpp1601 RefPtr<ScriptCallStack> stack = createScriptCallStack(JSMainThreadExecState::currentState(), 2);
1659 RefPtr<ScriptCallStack> stack = createScriptCallStack(JSMainThreadExecState::currentState(), 2);
H A DDOMWindow.cpp917 stackTrace = createScriptCallStack(JSMainThreadExecState::currentState(), ScriptCallStack::maxCallStackSizeToCapture);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp370 GstState currentState; local
373 gst_element_get_state(m_playBin.get(), &currentState, &pending, 0);
374 if (currentState == newState || pending == newState) {
376 gst_element_state_get_name(currentState), gst_element_state_get_name(pending));
381 gst_element_state_get_name(currentState), gst_element_state_get_name(pending));
385 if (currentState != pausedOrPlaying && setStateResult == GST_STATE_CHANGE_FAILURE) {
433 GstState currentState, pendingState; local
434 gst_element_get_state(m_playBin.get(), &currentState, &pendingState, 0);
435 if (currentState < GST_STATE_PAUSED && pendingState <= GST_STATE_PAUSED)
900 GstState requestedState, currentState; local
[all...]
/macosx-10.10/apache-793/httpd/server/mpm/winnt/
H A Dservice.c57 static int ReportStatusToSCMgr(int currentState, int waitHint,
185 static int ReportStatusToSCMgr(int currentState, int waitHint, argument
192 if (currentState == SERVICE_RUNNING) {
198 else if (currentState == SERVICE_STOPPED) {
215 ctx->ssStatus.dwCurrentState = currentState;
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOGraphicsPrivate.h202 UInt32 currentState; member in struct:IODisplayPMVars
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXsignal.c383 struct sigaction currentState;
385 if (sigaction (signalNum, NULL, &currentState) < 0)
387 *sigProcPtr = currentState.sa_handler;
389 *restart = ((currentState.sa_flags & SA_INTERRUPT) == 0);
391 *restart = ((currentState.sa_flags & SA_RESTART) != 0);
381 struct sigaction currentState; local
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DTimelineRecordFactory.cpp63 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(JSMainThreadExecState::currentState(), maxCallStackDepth);
H A DInspectorResourceAgent.cpp556 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(JSMainThreadExecState::currentState(), ScriptCallStack::maxCallStackSizeToCapture);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIODisplay.cpp519 fDisplayPMVars->currentState = kIODisplayMaxPowerState;
1172 fDisplayPMVars->currentState = kIODisplayMaxPowerState;
H A DIOFramebuffer.cpp6251 UInt8 currentState; local
6265 currentState = serverNotified;
6267 notifyServer( currentState );
/macosx-10.10/IOStorageFamily-182.1.1/
H A DIOBlockStorageDriver.cpp976 bool currentState; local
979 result = getProvider()->reportMediaState(&currentState,&changed);
984 changed = _mediaObject ? !currentState : currentState;
986 result = mediaStateHasChanged(currentState ? kIOMediaStateOnline
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOService.h1607 IOPMPowerFlags currentState )

Completed in 262 milliseconds