Home
last modified time | relevance | path

Searched refs:strSource (Results 1 – 25 of 162) sorted by relevance

1234567

/dports/games/fs2open/fs2open.github.com-release_21_4_1/test/src/globalincs/
H A Dtest_safe_strings.cpp12 char strSource[15]; in TEST() local
15 memset(strSource, 0, sizeof(strSource)); in TEST()
22 char strSource[15]; in TEST() local
25 memset(strSource, 0, sizeof(strSource)); in TEST()
35 char strSource[15]; in TEST() local
38 memset(strSource, 0, sizeof(strSource)); in TEST()
45 char strSource[15]; in TEST() local
48 memset(strSource, 0, sizeof(strSource)); in TEST()
94 memset(strSource, 0, sizeof(strSource)); in TEST()
105 memset(strSource, 0, sizeof(strSource)); in TEST()
[all …]
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/globalincs/
H A Dsafe_strings.h55 errno_t scp_strcpy_s( const char* file, int line, char (&strDest)[ size ], const char* strSource ) in scp_strcpy_s() argument
57 return scp_strcpy_s( file, line, strDest, size, strSource ); in scp_strcpy_s()
64 return scp_strcat_s( file, line, strDest, size, strSource ); in scp_strcat_s()
74 inline errno_t strcpy_s( char* strDest, size_t sizeInBytes, const char* strSource ) in strcpy_s() argument
76 strcpy( strDest, strSource ); in strcpy_s()
80 inline errno_t strcat_s( char* strDest, size_t sizeInBytes, const char* strSource ) in strcat_s() argument
82 strcat( strDest, strSource ); in strcat_s()
86 inline errno_t strcpy_s( char* strDest, const char* strSource ) in strcpy_s() argument
88 strcpy( strDest, strSource ); in strcpy_s()
92 inline errno_t strcat_s( char* strDest, const char* strSource ) in strcat_s() argument
[all …]
H A Dsafe_strings.cpp28 …cp_strcpy_s( const char* file, int line, char* strDest, size_t sizeInBytes, const char* strSource ) in scp_strcpy_s() argument
34 if ( !strDest || !strSource ) in scp_strcpy_s()
50 pSource = strSource; in scp_strcpy_s()
64 …cp_strcat_s( const char* file, int line, char* strDest, size_t sizeInBytes, const char* strSource ) in scp_strcat_s() argument
70 if ( !strDest || !strSource ) in scp_strcat_s()
87 pSource = strSource; in scp_strcat_s()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/globalincs/
H A Dsafe_strings.h55 errno_t scp_strcpy_s( const char* file, int line, char (&strDest)[ size ], const char* strSource ) in scp_strcpy_s() argument
57 return scp_strcpy_s( file, line, strDest, size, strSource ); in scp_strcpy_s()
64 return scp_strcat_s( file, line, strDest, size, strSource ); in scp_strcat_s()
74 inline errno_t strcpy_s( char* strDest, size_t sizeInBytes, const char* strSource ) in strcpy_s() argument
76 strcpy( strDest, strSource ); in strcpy_s()
80 inline errno_t strcat_s( char* strDest, size_t sizeInBytes, const char* strSource ) in strcat_s() argument
82 strcat( strDest, strSource ); in strcat_s()
86 inline errno_t strcpy_s( char* strDest, const char* strSource ) in strcpy_s() argument
88 strcpy( strDest, strSource ); in strcpy_s()
92 inline errno_t strcat_s( char* strDest, const char* strSource ) in strcat_s() argument
[all …]
H A Dsafe_strings.cpp28 …cp_strcpy_s( const char* file, int line, char* strDest, size_t sizeInBytes, const char* strSource ) in scp_strcpy_s() argument
34 if ( !strDest || !strSource ) in scp_strcpy_s()
50 pSource = strSource; in scp_strcpy_s()
64 …cp_strcat_s( const char* file, int line, char* strDest, size_t sizeInBytes, const char* strSource ) in scp_strcat_s() argument
70 if ( !strDest || !strSource ) in scp_strcat_s()
87 pSource = strSource; in scp_strcat_s()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/iga/include/common/
H A Dsecure_string.h17 strcpy_s(char *strDestination, size_t numberOfElements, const char *strSource) in strcpy_s() argument
19 strncpy(strDestination, strSource, numberOfElements); in strcpy_s()
25 strncpy_s(char *strDestination, size_t numberOfElements, const char *strSource, size_t count) in strncpy_s() argument
28 strncpy(strDestination, strSource, count); in strncpy_s()
31 strncpy(strDestination, strSource, numberOfElements - 1); in strncpy_s()
38 strncat_s(char *strDestination, size_t numberOfElements, const char *strSource, size_t count) in strncat_s() argument
45 strncpy(strDestination + existingIndex, strSource, count); in strncat_s()
48 strncpy(strDestination + existingIndex, strSource, elementsLeft - 1); in strncat_s()
55 strcat_s(char *strDestination, size_t numberOfElements, const char *strSource) in strcat_s() argument
57 strncat_s(strDestination, numberOfElements, strSource, strlen(strSource)); in strcat_s()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/inc/common/
H A Dsecure_string.h18 strcpy_s(char *strDestination, size_t numberOfElements, const char *strSource) in strcpy_s() argument
26 strncpy(strDestination, strSource, numberOfElements); in strcpy_s()
35 strncpy_s(char *strDestination, size_t numberOfElements, const char *strSource, size_t count) in strncpy_s() argument
44 strncpy(strDestination, strSource, count); in strncpy_s()
56 strncpy(strDestination, strSource, numberOfElements - 1); in strncpy_s()
66 strncat_s(char *strDestination, size_t numberOfElements, const char *strSource, size_t count) in strncat_s() argument
79 strncpy(strDestination + existingIndex, strSource, count); in strncat_s()
91 strncpy(strDestination + existingIndex, strSource, elementsLeft - 1); in strncat_s()
101 strcat_s(char *strDestination, size_t numberOfElements, const char *strSource) in strcat_s() argument
103 strncat_s(strDestination, numberOfElements, strSource, strlen(strSource)); in strcat_s()
/dports/databases/pgbackrest/pgbackrest-release-2.35/doc/lib/pgBackRestDoc/Common/
H A DDocManifest.pm170 if (grep(/^$strSource$/, @{$self->{stryExclude}}))
184 $$oRenderOutHash{source} = $strSource;
223 {name => 'strSource', value => $strSource},
479 $strSource
487 if (!defined(${$self->{oManifest}}{source}{$strSource}))
489 confess &log(ERROR, "source ${strSource} does not exist");
687 my $hSource = ${$self->{oManifest}}{source}{$strSource};
714 foreach my $strSource (sort(keys(%{${$self->{oManifest}}{source}})))
716 my $hSource = ${$self->{oManifest}}{source}{$strSource};
746 $strSource
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java44 String strSource = null; field in Match
61 if (this.strSource != null) ma.setSource(this.strSource); in clone()
92 this.strSource = null; in setSource()
100 this.strSource = str; in setSource()
108 this.strSource = null; in setSource()
180 } else if (this.strSource != null) { in getCapturedText()
181 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java43 String strSource = null; field in Match
60 if (this.strSource != null) ma.setSource(this.strSource); in clone()
91 this.strSource = null; in setSource()
99 this.strSource = str; in setSource()
107 this.strSource = null; in setSource()
179 } else if (this.strSource != null) { in getCapturedText()
180 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java43 String strSource = null; field in Match
60 if (this.strSource != null) ma.setSource(this.strSource); in clone()
91 this.strSource = null; in setSource()
99 this.strSource = str; in setSource()
107 this.strSource = null; in setSource()
179 } else if (this.strSource != null) { in getCapturedText()
180 ret = this.strSource.substring(begin, end); in getCapturedText()
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/openvr/samples/shared/
H A Dstrtools.h66 inline errno_t wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_… in wcsncpy_s() argument
68 return wcslcpy(strDest, strSource, numberOfElements); in wcsncpy_s()
71 inline errno_t strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t coun… in strncpy_s() argument
73 return strlcpy(strDest, strSource, numberOfElements); in strncpy_s()
83 inline void wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_t c… in wcsncpy_s() argument
85 wcsncpy(strDest, strSource, numberOfElements); in wcsncpy_s()
89 inline void strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t count) in strncpy_s() argument
91 strncpy(strDest, strSource, numberOfElements); in strncpy_s()
/dports/devel/py-bullet3/bullet3-3.21/examples/ThirdPartyLibs/openvr/samples/shared/
H A Dstrtools.h66 inline errno_t wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_… in wcsncpy_s() argument
68 return wcslcpy(strDest, strSource, numberOfElements); in wcsncpy_s()
71 inline errno_t strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t coun… in strncpy_s() argument
73 return strlcpy(strDest, strSource, numberOfElements); in strncpy_s()
83 inline void wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_t c… in wcsncpy_s() argument
85 wcsncpy(strDest, strSource, numberOfElements); in wcsncpy_s()
89 inline void strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t count) in strncpy_s() argument
91 strncpy(strDest, strSource, numberOfElements); in strncpy_s()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openvr/src/src/vrcommon/
H A Dstrtools_public.h62 inline errno_t wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_… in wcsncpy_s() argument
64 return wcslcpy(strDest, strSource, numberOfElements); in wcsncpy_s()
67 inline errno_t strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t coun… in strncpy_s() argument
69 return strlcpy(strDest, strSource, numberOfElements); in strncpy_s()
79 inline void wcsncpy_s(wchar_t *strDest, size_t numberOfElements, const wchar_t *strSource, size_t c… in wcsncpy_s() argument
81 wcsncpy(strDest, strSource, numberOfElements); in wcsncpy_s()
85 inline void strncpy_s(char *strDest, size_t numberOfElements, const char *strSource, size_t count) in strncpy_s() argument
87 strncpy(strDest, strSource, numberOfElements); in strncpy_s()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/RedfishPkg/PrivateInclude/Library/
H A DRedfishCrtLib.h224 #define strcpy(strDest,strSource) AsciiStrCpyS(strDest,(strlen(strSource)+1),strSource) argument
225 #define strncpy(strDest,strSource,count) AsciiStrnCpyS(strDest,(UINTN)count,strSource,(UINTN)count) argument
226 #define strncpys(strDest, DestLen, strSource,count) AsciiStrnCpyS(strDest,DestLen,strSource,(UINTN… argument
227 #define strcat(strDest,strSource) AsciiStrCatS(strDest,(strlen(strSource)+strlen(strDest)+1… argument
/dports/sysutils/edk2/edk2-edk2-stable202102/RedfishPkg/PrivateInclude/Library/
H A DRedfishCrtLib.h224 #define strcpy(strDest,strSource) AsciiStrCpyS(strDest,(strlen(strSource)+1),strSource)
225 #define strncpy(strDest,strSource,count) AsciiStrnCpyS(strDest,(UINTN)count,strSource,(UINTN)count)
226 #define strncpys(strDest, DestLen, strSource,count) AsciiStrnCpyS(strDest,DestLen,strSource,(UINTN…
227 #define strcat(strDest,strSource) AsciiStrCatS(strDest,(strlen(strSource)+strlen(strDest)+1…
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/interfaces/legacy/
H A DModuleXbmcvfs.cpp25 bool copy(const String& strSource, const String& strDestination) in copy() argument
28 return XFILE::CFile::Copy(strSource, strDestination); in copy()
32 bool deleteFile(const String& strSource) in deleteFile() argument
35 return XFILE::CFile::Delete(strSource); in deleteFile()
103 std::string strSource; in listdir() local
104 strSource = path; in listdir()
105 XFILE::CDirectory::GetDirectory(strSource, items, "", XFILE::DIR_FLAG_NO_FILE_DIRS); in listdir()
/dports/devel/R-cran-BH/BH/inst/include/boost/regex/v5/
H A Dregex_workaround.hpp116 const char *strSource in strcpy_s() argument
119 std::size_t lenSourceWithNull = std::strlen(strSource) + 1; in strcpy_s()
122 std::memcpy(strDestination, strSource, lenSourceWithNull); in strcpy_s()
128 const char *strSource in strcat_s() argument
131 std::size_t lenSourceWithNull = std::strlen(strSource) + 1; in strcat_s()
135 std::memcpy(strDestination + lenDestination, strSource, lenSourceWithNull); in strcat_s()

1234567