Symbol: fFunction
headers/private/debugger/debug_info/FunctionInstance.h
40
{ return fFunction; }
headers/private/debugger/debug_info/FunctionInstance.h
74
Function* fFunction;
headers/private/debugger/model/StackFrame.h
102
FunctionInstance* fFunction;
headers/private/debugger/model/StackFrame.h
68
FunctionInstance* Function() const { return fFunction; }
headers/private/kernel/DPC.h
49
void (*fFunction)(void*);
headers/private/shared/Thread.h
105
: fFunction(function),
headers/private/shared/Thread.h
111
{ (fFunction)(fParam1); }
headers/private/shared/Thread.h
116
status_t (*fFunction)(Param1);
headers/private/shared/Thread.h
126
: fFunction(function),
headers/private/shared/Thread.h
132
{ (fOnThis->*fFunction)(); }
headers/private/shared/Thread.h
137
status_t (T::*fFunction)();
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
186
FunctionInstance* fFunction;
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
55
fFunction(function),
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
61
if (fFunction != NULL)
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
62
fFunction->AcquireReference();
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
73
if (fFunction != NULL)
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
74
fFunction->ReleaseReference();
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp
89
return fFunction;
src/kits/debugger/debug_info/FunctionInstance.cpp
21
fFunction(NULL),
src/kits/debugger/debug_info/FunctionInstance.cpp
57
if (fFunction != NULL)
src/kits/debugger/debug_info/FunctionInstance.cpp
58
fFunction->ReleaseReference();
src/kits/debugger/debug_info/FunctionInstance.cpp
60
fFunction = function;
src/kits/debugger/debug_info/FunctionInstance.cpp
62
if (fFunction != NULL)
src/kits/debugger/debug_info/FunctionInstance.cpp
63
fFunction->AcquireReference();
src/kits/debugger/debug_info/FunctionInstance.cpp
83
if (fFunction != NULL)
src/kits/debugger/debug_info/FunctionInstance.cpp
84
fFunction->NotifySourceCodeChanged();
src/kits/debugger/model/StackFrame.cpp
126
if (fFunction != NULL)
src/kits/debugger/model/StackFrame.cpp
127
fFunction->ReleaseReference();
src/kits/debugger/model/StackFrame.cpp
129
fFunction = function;
src/kits/debugger/model/StackFrame.cpp
131
if (fFunction != NULL)
src/kits/debugger/model/StackFrame.cpp
132
fFunction->AcquireReference();
src/kits/debugger/model/StackFrame.cpp
34
fFunction(NULL),
src/system/kernel/DPC.cpp
37
fFunction = function;
src/system/kernel/DPC.cpp
45
fFunction(fArgument);
src/system/kernel/scheduler/scheduler_profiler.cpp
210
if (fFunctionData[count].fFunction == NULL)
src/system/kernel/scheduler/scheduler_profiler.cpp
230
function->fTimeExclusive / function->fCalled, function->fFunction);
src/system/kernel/scheduler/scheduler_profiler.cpp
239
if (fFunctionData[i].fFunction == NULL)
src/system/kernel/scheduler/scheduler_profiler.cpp
241
if (!strcmp(fFunctionData[i].fFunction, function))
src/system/kernel/scheduler/scheduler_profiler.cpp
247
if (fFunctionData[i].fFunction == NULL) {
src/system/kernel/scheduler/scheduler_profiler.cpp
248
fFunctionData[i].fFunction = function;
src/system/kernel/scheduler/scheduler_profiler.cpp
251
if (!strcmp(fFunctionData[i].fFunction, function))
src/system/kernel/scheduler/scheduler_profiler.cpp
71
stackEntry->fFunction = function;
src/system/kernel/scheduler/scheduler_profiler.cpp
93
atomic_add64(&stackEntry->fFunction->fTimeInclusive, timeSpent);
src/system/kernel/scheduler/scheduler_profiler.cpp
94
atomic_add64(&stackEntry->fFunction->fTimeExclusive,
src/system/kernel/scheduler/scheduler_profiler.h
47
const char* fFunction;
src/system/kernel/scheduler/scheduler_profiler.h
56
FunctionData* fFunction;
src/tests/add-ons/kernel/drivers/tty/tty-test.cpp
208
return (fObject->*fFunction)();
src/tests/add-ons/kernel/drivers/tty/tty-test.cpp
213
int32 (Type::*fFunction)();
src/tools/fs_shell/fssh.cpp
162
if (!fFunction) {
src/tools/fs_shell/fssh.cpp
167
return (*fFunction)(argc, argv);
src/tools/fs_shell/fssh.h
45
command_function* fFunction;