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

/macosx-10.9.5/mDNSResponder-522.92.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.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dtls2.c1063 ber_len_t valLen; local
1070 valLen=berValue->bv_len;
1072 if (valLen) {
1074 valLen--;
1079 if (valLen*BITS_PER_BYTE > bitPadding ) {
1080 valLen-=(bitPadding/BITS_PER_BYTE);
1083 valLen=0;
1088 if (valLen*BITS_PER_BYTE < bitPadding ) {
1090 valLen=0;
1094 bitLength=valLen*BITS_PER_BYT
[all...]
/macosx-10.9.5/UserNotification-28/Libunc/
H A DUNCUserNotification.c85 unsigned long keyLen, valLen; local
109 valLen = strlen(val); if (valLen > MAX_STRING_LENGTH) valLen = MAX_STRING_LENGTH;
120 APPENDN(val, valLen);
/macosx-10.9.5/OpenLDAP-491.1/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.9.5/Security-55471.14.18/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.9.5/ICU-511.35/icuSources/common/
H A Duloc.cpp58 char *values, int32_t valuesCapacity, int32_t *valLen,
630 char *values, int32_t valuesCapacity, int32_t *valLen,
783 if(valLen) {
784 *valLen = valuesLen;
797 char *values, int32_t valuesCapacity, int32_t *valLen,
801 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
794 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.9.5/mDNSResponder-522.92.1/mDNSWindows/
H A DmDNSWin32.c4816 size_t valLen; local
4829 valLen = strlen( m->p->nbname );
4830 require_action( valLen < 32, exit, err = kUnknownErr ); // This should never happen, but check to avoid further memory corruption
4831 *txtPtr++ = ( mDNSu8 ) ( keyLen + valLen );
4834 if ( valLen ) { memcpy( txtPtr, m->p->nbname, valLen ); txtPtr += ( mDNSu8 ) valLen; }
4836 valLen = strlen( m->p->nbdomain );
4837 require_action( valLen < 32, exit, err = kUnknownErr ); // This should never happen, but check to avoid further memory corruption
4838 *txtPtr++ = ( mDNSu8 )( keyLen + valLen );
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFLocale.c1186 int valLen = strlen(value); local
1187 if (valLen != 3) // not a valid ISO code
1193 u_charsToUChars(value, curr, valLen);
1194 curr[valLen] = '\0';

Completed in 165 milliseconds