Searched refs:compactState (Results 1 - 2 of 2) sorted by relevance

/haiku/src/apps/debuganalyzer/model/
H A DModel.cpp585 CompactSchedulingState* compactState = (CompactSchedulingState*)malloc( local
588 if (compactState == NULL)
592 compactState->fEventOffset = eventOffset;
593 compactState->fThreadCount = threadCount;
594 compactState->fLastEventTime = lastEventTime;
604 compactState->fThreadStates[threadIndex++] = *threadState;
608 return compactState;
998 CompactSchedulingState* compactState = CompactSchedulingState::Create(state, local
1000 if (compactState == NULL)
1003 if (!fSchedulingStates.AddItem(compactState)) {
[all...]
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp1041 const Model::CompactSchedulingState* compactState
1043 //printf(" compactState: %p\n", compactState);
1045 status_t error = fState.Init(compactState);
1053 if (error == B_OK && compactState != NULL)
1054 error = input.Seek(compactState->EventOffset());
1055 //printf(" event offset: %lld, input init error: %s\n", compactState != NULL ? compactState->EventOffset() : 0, strerror(error));
1063 if (compactState != NULL) {
1064 int32 threadStateCount = compactState
[all...]

Completed in 161 milliseconds