Searched refs:valLen (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/Java/
H A DTXTRecord.java77 int valLen = (value != null) ? value.length : 0;
90 if ( keyBytes.length + valLen >= 255)
104 int valLen = (value != null) ? value.length : 0;
112 avLen = keyBytes.length + valLen + (value != null ? 1 : 0);
124 System.arraycopy( value, 0, fBytes, insertion + keyBytes.length + 2, valLen);
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/threadTest/
H A DmdsLookupThr.cpp56 unsigned valLen,
88 predData.Length = valLen;
45 doLookup( MDSClient::Directory &mds, CSSM_DB_RECORDTYPE recordType, const char *key, const void *valPtr, unsigned valLen, CSSM_DB_ATTRIBUTE_FORMAT valForm, CSSM_DB_OPERATOR valOp) argument
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dtls2.c1112 ber_len_t valLen; local
1119 valLen=berValue->bv_len;
1121 if (valLen) {
1123 valLen--;
1128 if (valLen*BITS_PER_BYTE > bitPadding ) {
1129 valLen-=(bitPadding/BITS_PER_BYTE);
1132 valLen=0;
1137 if (valLen*BITS_PER_BYTE < bitPadding ) {
1139 valLen=0;
1143 bitLength=valLen*BITS_PER_BYT
[all...]
/macosx-10.10/UserNotification-29/Libunc/
H A DUNCUserNotification.c87 unsigned long keyLen, valLen;
111 valLen = strlen(val); if (valLen > MAX_STRING_LENGTH) valLen = MAX_STRING_LENGTH;
122 APPENDN(val, valLen);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dntservice.c356 DWORD valLen = sizeof( vValue ); local
368 if ( RegQueryValueEx( hkey, value, NULL, &vType, vValue, &valLen ) != ERROR_SUCCESS )
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/mdsLookup/
H A DmdsLookup.cpp205 unsigned valLen,
253 predData.Length = valLen;
306 outAttr.Value->Length, // valLen
336 outAttr.Value->Length, // valLen
189 doLookup( MDS_FUNCS *mdsFuncs, MDS_DB_HANDLE objDlDb, MDS_DB_HANDLE cdsaDlDb, bool cdsaLookup, CSSM_DB_RECORDTYPE recordType, const char *key, const void *valPtr, unsigned valLen, CSSM_DB_ATTRIBUTE_FORMAT valForm, CSSM_DB_OPERATOR valOp, const char *srchStr) argument
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dauthitems.c605 size_t valLen = strlen(value); local
607 if (item && item->type == AI_TYPE_STRING && valLen < item->bufLen) {
608 memcpy(item->data.value, value, valLen+1); // copy null
609 item->data.valueLength = valLen;
611 item = auth_item_create(AI_TYPE_STRING, key, value, valLen, 0);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duloc.cpp58 char *values, int32_t valuesCapacity, int32_t *valLen,
630 char *values, int32_t valuesCapacity, int32_t *valLen,
797 if(valLen) {
798 *valLen = valuesLen;
811 char *values, int32_t valuesCapacity, int32_t *valLen,
815 values, valuesCapacity, valLen, valuesToo,
627 _getKeywords(const char *localeID, char prev, char *keywords, int32_t keywordCapacity, char *values, int32_t valuesCapacity, int32_t *valLen, UBool valuesToo, const char* addKeyword, const char* addValue, UErrorCode *status) argument
808 locale_getKeywords(const char *localeID, char prev, char *keywords, int32_t keywordCapacity, char *values, int32_t valuesCapacity, int32_t *valLen, UBool valuesToo, UErrorCode *status) argument
H A Dlocid.cpp92 char *values, int32_t valuesCapacity, int32_t *valLen,
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/
H A DmDNSWin32.c4824 size_t valLen; local
4837 valLen = strlen( m->p->nbname );
4838 require_action( valLen < 32, exit, err = kUnknownErr ); // This should never happen, but check to avoid further memory corruption
4839 *txtPtr++ = ( mDNSu8 ) ( keyLen + valLen );
4842 if ( valLen ) { memcpy( txtPtr, m->p->nbname, valLen ); txtPtr += ( mDNSu8 ) valLen; }
4844 valLen = strlen( m->p->nbdomain );
4845 require_action( valLen < 32, exit, err = kUnknownErr ); // This should never happen, but check to avoid further memory corruption
4846 *txtPtr++ = ( mDNSu8 )( keyLen + valLen );
[all...]

Completed in 191 milliseconds