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

/macosx-10.9.5/CF-855.17/
H A DCFBinaryPList.c970 CFIndex stringKeyLen = -1; local
972 stringKeyLen = CFStringGetLength((CFStringRef)key);
987 if (stringKeyLen != -1) {
990 if (!(keyBufferPtr = CFStringGetCStringPtr((CFStringRef)key, kCFStringEncodingMacRoman)) && stringKeyLen < KEY_BUFF_SIZE) {
1010 // If the key's length is large, and the length we are querying is also large, then we have to read it in. If stringKeyLen is less than 0xf, then len will never be equal to it if it was encoded as large.
1011 if (0xf == len && stringKeyLen >= 0xf) {
1018 if (len == stringKeyLen) {
1026 if (memcmp(ptr2, keyBufferPtr, stringKeyLen) == 0) {

Completed in 89 milliseconds