Home
last modified time | relevance | path

Searched refs:PlatformSpecificFile (Results 1 – 13 of 13) sorted by relevance

/dports/devel/cpputest/cpputest-4.0/src/Platforms/Keil/
H A DUtestPlatform.cpp140 …static PlatformSpecificFile PlatformSpecificFOpenImplementation(const char* filename, const char* … in PlatformSpecificFOpenImplementation()
145 static void PlatformSpecificFPutsImplementation(const char* str, PlatformSpecificFile file) in PlatformSpecificFPutsImplementation()
150 static void PlatformSpecificFCloseImplementation(PlatformSpecificFile file) in PlatformSpecificFCloseImplementation()
158PlatformSpecificFile (*PlatformSpecificFOpen)(const char*, const char*) = PlatformSpecificFOpenImp…
159 …void (*PlatformSpecificFPuts)(const char*, PlatformSpecificFile) = PlatformSpecificFPutsImplementa…
160 void (*PlatformSpecificFClose)(PlatformSpecificFile) = PlatformSpecificFCloseImplementation;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/Iar/
H A DUtestPlatform.cpp129 static PlatformSpecificFile PlatformSpecificFOpenImplementation(const char* filename, const char* f… in PlatformSpecificFOpenImplementation()
138 static void PlatformSpecificFPutsImplementation(const char* str, PlatformSpecificFile file) in PlatformSpecificFPutsImplementation()
145 static void PlatformSpecificFCloseImplementation(PlatformSpecificFile file) in PlatformSpecificFCloseImplementation()
154 PlatformSpecificFile (*PlatformSpecificFOpen)(const char*, const char*) = PlatformSpecificFOpenImpl…
155 void (*PlatformSpecificFPuts)(const char*, PlatformSpecificFile) = PlatformSpecificFPutsImplementat…
156 void (*PlatformSpecificFClose)(PlatformSpecificFile) = PlatformSpecificFCloseImplementation;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/armcc/
H A DUtestPlatform.cpp129 static PlatformSpecificFile PlatformSpecificFOpenImplementation(const char* filename, const char* f… in PlatformSpecificFOpenImplementation()
134 static void PlatformSpecificFPutsImplementation(const char* str, PlatformSpecificFile file) in PlatformSpecificFPutsImplementation()
139 static void PlatformSpecificFCloseImplementation(PlatformSpecificFile file) in PlatformSpecificFCloseImplementation()
149 PlatformSpecificFile (*PlatformSpecificFOpen)(const char*, const char*) = PlatformSpecificFOpenImpl…
150 void (*PlatformSpecificFPuts)(const char*, PlatformSpecificFile) = PlatformSpecificFPutsImplementat…
151 void (*PlatformSpecificFClose)(PlatformSpecificFile) = PlatformSpecificFCloseImplementation;
/dports/devel/cpputest/cpputest-4.0/include/CppUTest/
H A DPlatformSpecificFunctions_c.h63 typedef void* PlatformSpecificFile; typedef
65 extern PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag);
66 extern void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file);
67 extern void (*PlatformSpecificFClose)(PlatformSpecificFile file);
/dports/devel/cpputest/cpputest-4.0/src/Platforms/C2000/
H A DUtestPlatform.cpp133 PlatformSpecificFile C2000FOpen(const char* filename, const char* flag) in C2000FOpen()
138 static void C2000FPuts(const char* str, PlatformSpecificFile file) in C2000FPuts()
143 static void C2000FClose(PlatformSpecificFile file) in C2000FClose()
148 PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag) = C2000FOpen;
149 void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file) = C2000FPuts;
150 void (*PlatformSpecificFClose)(PlatformSpecificFile file) = C2000FClose;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/Dos/
H A DUtestPlatform.cpp126 PlatformSpecificFile DosFOpen(const char* filename, const char* flag) in DosFOpen()
131 static void DosFPuts(const char* str, PlatformSpecificFile file) in DosFPuts()
136 static void DosFClose(PlatformSpecificFile file) in DosFClose()
141 PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag) = DosFOpen;
142 void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file) = DosFPuts;
143 void (*PlatformSpecificFClose)(PlatformSpecificFile file) = DosFClose;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/VisualCpp/
H A DUtestPlatform.cpp144 static PlatformSpecificFile VisualCppFOpen(const char* filename, const char* flag) in VisualCppFOpen()
151 static void VisualCppFPuts(const char* str, PlatformSpecificFile file) in VisualCppFPuts()
156 static void VisualCppFClose(PlatformSpecificFile file) in VisualCppFClose()
161 PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag) = VisualCppFO…
162 void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file) = VisualCppFPuts;
163 void (*PlatformSpecificFClose)(PlatformSpecificFile file) = VisualCppFClose;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/Gcc/
H A DUtestPlatform.cpp238 static PlatformSpecificFile PlatformSpecificFOpenImplementation(const char* filename, const char* f… in PlatformSpecificFOpenImplementation()
249 static void PlatformSpecificFPutsImplementation(const char* str, PlatformSpecificFile file) in PlatformSpecificFPutsImplementation()
254 static void PlatformSpecificFCloseImplementation(PlatformSpecificFile file) in PlatformSpecificFCloseImplementation()
264 PlatformSpecificFile (*PlatformSpecificFOpen)(const char*, const char*) = PlatformSpecificFOpenImpl…
265 void (*PlatformSpecificFPuts)(const char*, PlatformSpecificFile) = PlatformSpecificFPutsImplementat…
266 void (*PlatformSpecificFClose)(PlatformSpecificFile) = PlatformSpecificFCloseImplementation;
/dports/devel/cpputest/cpputest-4.0/tests/CppUTest/
H A DCommandLineTestRunnerTest.cpp293 typedef PlatformSpecificFile (*FOpenFunc)(const char*, const char*);
294 typedef void (*FPutsFunc)(const char*, PlatformSpecificFile);
295 typedef void (*FCloseFunc)(PlatformSpecificFile);
330 static PlatformSpecificFile fopen_fake(const char*, const char*) in fopen_fake()
332 return (PlatformSpecificFile) NULLPTR; in fopen_fake()
335 static void fputs_fake(const char* str, PlatformSpecificFile) in fputs_fake()
340 static void fclose_fake(PlatformSpecificFile) in fclose_fake()
H A DJUnitOutputTest.cpp316 static PlatformSpecificFile mockFOpen(const char* filename, const char*) in mockFOpen()
321 static void mockFPuts(const char* str, PlatformSpecificFile file) in mockFPuts()
326 static void mockFClose(PlatformSpecificFile file) in mockFClose()
/dports/devel/cpputest/cpputest-4.0/src/Platforms/GccNoStdC/
H A DUtestPlatform.cpp55 PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag) = NULLPTR;
56 void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file) = NULLPTR;
57 void (*PlatformSpecificFClose)(PlatformSpecificFile file) = NULLPTR;
/dports/devel/cpputest/cpputest-4.0/src/Platforms/Symbian/
H A DUtestPlatform.cpp128 PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { in PlatformSpecificFOpen()
132 void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { in PlatformSpecificFPuts()
136 void PlatformSpecificFClose(PlatformSpecificFile file) { in PlatformSpecificFClose()
/dports/devel/cpputest/cpputest-4.0/src/CppUTest/
H A DJUnitTestOutput.cpp71 PlatformSpecificFile file_;