Symbol: fStates
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.cpp
645
delete[] fStates;
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.cpp
655
fStates = new uint8[slen * 16];
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.cpp
657
memset(fStates, 0, slen * 16);
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.cpp
673
uint8* states = &fStates[i * 16];
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.cpp
933
temp.AddData("states", B_UINT8_TYPE, &fStates[i * 16], 16, true, 16);
src/add-ons/input_server/filters/shortcut_catcher/CommandActuators.h
132
uint8* fStates;
src/add-ons/kernel/network/protocols/ipv4/multicast.cpp
163
typename States::Iterator iterator = fStates.GetIterator();
src/add-ons/kernel/network/protocols/ipv4/multicast.cpp
178
state = fStates.Lookup(std::make_pair(&groupAddress, interface->index));
src/add-ons/kernel/network/protocols/ipv4/multicast.cpp
185
status_t status = fStates.Insert(state);
src/add-ons/kernel/network/protocols/ipv4/multicast.cpp
193
fStates.Remove(state);
src/add-ons/kernel/network/protocols/ipv4/multicast.cpp
216
fStates.Remove(state);
src/add-ons/kernel/network/protocols/ipv4/multicast.h
220
States fStates;
src/add-ons/kernel/network/protocols/ipv6/multicast.cpp
152
typename States::Iterator iterator = fStates.GetIterator();
src/add-ons/kernel/network/protocols/ipv6/multicast.cpp
167
state = fStates.Lookup(std::make_pair(&groupAddress, interface->index));
src/add-ons/kernel/network/protocols/ipv6/multicast.cpp
174
status_t status = fStates.Insert(state);
src/add-ons/kernel/network/protocols/ipv6/multicast.cpp
182
fStates.Remove(state);
src/add-ons/kernel/network/protocols/ipv6/multicast.cpp
204
fStates.Remove(state);
src/add-ons/kernel/network/protocols/ipv6/multicast.h
230
States fStates;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
107
fStates(NULL)
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
114
if (fStates != NULL) {
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
115
StateEntry* entry = fStates->Clear(true);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
123
delete fStates;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
131
fStates = new(std::nothrow) StateTable;
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
132
if (fStates == NULL)
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
135
return fStates->Init();
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
145
StateEntry* stateEntry = fStates->Lookup(Key(threadID, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
151
StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
159
StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
169
StateEntry* defaultEntry = fStates->Lookup(Key(-1, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
176
fStates->Insert(defaultEntry);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
184
threadEntry = fStates->Lookup(Key(threadID, functionID));
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
190
fStates->Remove(defaultEntry);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.cpp
195
fStates->Insert(threadEntry);
src/apps/debugger/user_interface/gui/model/VariablesViewStateHistory.h
39
StateTable* fStates;
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1235
fStates.RemoveItem(fStates.CountItems() - 1);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1260
fStates.AddItem(state);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1262
TRACE("_PushState: state count: %ld\n", fStates.CountItems());
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1325
fStates.RemoveItems(0, firstActive);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1327
firstActive, fStates.CountItems());
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1360
return _StateAt(fStates.CountItems() - 1);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
1367
return (PlayingState*)fStates.ItemAt(index);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
161
fStates.AddItem(state);
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
163
TRACE("initial state pushed: state count: %ld\n", fStates.CountItems());
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
186
fStates.MakeEmpty();
src/apps/mediaplayer/media_node_framework/PlaybackManager.cpp
98
fStates(10),
src/apps/mediaplayer/media_node_framework/PlaybackManager.h
225
BList fStates;
src/apps/remotedesktop/RemoteView.cpp
370
int32 index = fStates.BinarySearchIndexByKey(token, &_StateCompareByKey);
src/apps/remotedesktop/RemoteView.cpp
402
fStates.AddItem(state, -index - 1);
src/apps/remotedesktop/RemoteView.cpp
410
int32 index = fStates.BinarySearchIndexByKey(token, &_StateCompareByKey);
src/apps/remotedesktop/RemoteView.cpp
414
engine_state *state = fStates.RemoveItemAt(index);
src/apps/remotedesktop/RemoteView.cpp
425
return fStates.BinarySearchByKey(token, &_StateCompareByKey);
src/apps/remotedesktop/RemoteView.h
84
BObjectList<engine_state> fStates;
src/system/boot/loader/package_support.cpp
182
fStates(),
src/system/boot/loader/package_support.cpp
190
while (PackageVolumeState* state = fStates.RemoveHead())
src/system/boot/loader/package_support.cpp
254
fStates.Sort(&PackageVolumeState::IsNewer);
src/system/boot/loader/package_support.cpp
257
PackageVolumeState* state = fStates.Head();
src/system/boot/loader/package_support.cpp
259
for (state = fStates.GetNext(state); state != NULL;) {
src/system/boot/loader/package_support.cpp
260
PackageVolumeState* nextState = fStates.GetNext(state);
src/system/boot/loader/package_support.cpp
267
fStates.Remove(state);
src/system/boot/loader/package_support.cpp
293
fStates.Add(state.Get());
src/system/boot/loader/package_support.cpp
315
otherState = fStates.GetPrevious(otherState)) {
src/system/boot/loader/package_support.h
63
{ return fStates; }
src/system/boot/loader/package_support.h
75
StateList fStates;