Home
last modified time | relevance | path

Searched refs:strFindCh (Results 1 – 7 of 7) sorted by relevance

/dports/security/cryptlib/cryptlib-3.4.3/io/
H A Dnet_url.c247 if( ( offset = strFindCh( strPtr, strLen, '@' ) ) >= 0 ) in parseURL()
278 if( ( offset = strFindCh( strPtr, strLen, ']' ) ) <= 0 ) in parseURL()
310 offset = strFindCh( strPtr, strLen, ':' ); in parseURL()
311 offset2 = strFindCh( strPtr, strLen, '/' ); in parseURL()
/dports/security/cryptlib/cryptlib-3.4.3/misc/
H A Dint_string.c23 int strFindCh( IN_BUFFER( strLen ) const char *str, in strFindCh() function
494 if( strFindCh( "abcdefgh", 8, 'a' ) != 0 || \ in testIntString()
495 strFindCh( "abcdefgh", 8, 'd' ) != 3 || \ in testIntString()
496 strFindCh( "abcdefgh", 8, 'h' ) != 7 || \ in testIntString()
497 strFindCh( "abcdefgh", 8, 'x' ) != -1 ) in testIntString()
H A Dint_api.h280 int strFindCh( IN_BUFFER( strLen ) const char *str,
/dports/security/cryptlib/cryptlib-3.4.3/keyset/
H A Ddbms.c549 if( ( offset = strFindCh( name, nameLen, ':' ) ) < 0 && \ in dbmsParseName()
550 ( offset = strFindCh( name, nameLen, '@' ) ) < 0 ) in dbmsParseName()
572 offset2 = strFindCh( name + offset, nameLen - offset, '@' ); in dbmsParseName()
587 offset2 = strFindCh( name + offset, nameLen - offset, '/' ); in dbmsParseName()
H A Dpgp_wr.c199 if( strFindCh( nameBuffer, nameLength, '@' ) > 0 )
/dports/security/cryptlib/cryptlib-3.4.3/enc_dec/
H A Dbase64.c292 if( isSSH && strFindCh( buffer, length, ':' ) < 0 ) in checkPEMHeader()
/dports/security/cryptlib/cryptlib-3.4.3/cert/
H A Dext_def.c3888 if( ( offset = strFindCh( url, urlLength, ':' ) ) >= 0 ) in checkURLString()