Searched refs:s_szSuff (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A DldrNative-posix.cpp51 static const char s_szSuff[] = ".DLL"; local
53 static const char s_szSuff[] = ".s.so";
55 static const char s_szSuff[] = ".dylib";
57 static const char s_szSuff[] = ".so";
60 char *psz = (char *)alloca(cch + sizeof(s_szSuff));
64 memcpy(psz + cch, s_szSuff, sizeof(s_szSuff));
/vbox/src/VBox/Runtime/common/ldr/
H A DldrNative.cpp300 static const char s_szSuff[] = ".DLL";
302 static const char s_szSuff[] = ".s.so";
304 static const char s_szSuff[] = ".dylib";
306 static const char s_szSuff[] = ".so";
309 return s_szSuff;
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsNativeComponentLoader.cpp757 static const char s_szSuff[] = "-x86.dylib";
759 static const char s_szSuff[] = ".dylib";
764 static const char s_szSuff[] = "-x86.dll";
766 static const char s_szSuff[] = ".dll";
771 static const char s_szSuff[] = "-x86.so";
773 static const char s_szSuff[] = ".so";
783 if ( cchLeafName <= sizeof(s_szSuff)
784 || PL_strcasecmp(strLeafName.get() + cchLeafName - sizeof(s_szSuff) + 1, s_szSuff))

Completed in 238 milliseconds