Lines Matching defs:getFcn
77 GetFcnType getFcn;
108 getFcn = (GetFcnType) PR_FindSymbol(lib, "My_GetValue");
111 value = (*getFcn)();
124 getFcn = (GetFcnType) PR_FindSymbolAndLibrary("My_GetValue", &lib2);
125 if (NULL == getFcn || lib != lib2) {
131 value = (*getFcn)();
138 value = (*getFcn)();
158 getFcn = (GetFcnType) PR_FindFunctionSymbol(lib2, "My_GetValue");
161 value = (*getFcn)();
180 getFcn = (GetFcnType) PR_FindFunctionSymbolAndLibrary("My_GetValue", &lib2);
181 if (NULL != getFcn) {