Home
last modified time | relevance | path

Searched refs:keyBuf (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/PC/os2vacpp/
Dgetpathp.c160 char *keyBuf; in getpythonregpath() local
166keyBuf = alloca(sizeof(keyPrefix)-1 + versionLen + sizeof(keySuffix)); // chars only, plus 1 NULL. in getpythonregpath()
168 memcpy(keyBuf, keyPrefix, sizeof(keyPrefix)-1); in getpythonregpath()
169 memcpy(keyBuf+sizeof(keyPrefix)-1, PyWin_DLLVersionString, versionLen); in getpythonregpath()
170 …memcpy(keyBuf+sizeof(keyPrefix)-1+versionLen, keySuffix, sizeof(keySuffix)); // NULL comes with th… in getpythonregpath()
173 keyBuf, in getpythonregpath()
188 char keyBuf[MAX_PATH+1]; in getpythonregpath() local
194 index, keyBuf, MAX_PATH+1); in getpythonregpath()
196 rc = RegQueryValue(newKey, keyBuf, NULL, &reqdSize); in getpythonregpath()
210 index, keyBuf,MAX_PATH+1); in getpythonregpath()
[all …]
/external/mdnsresponder/mDNSWindows/DLLX/
DTXTRecord.cpp270 char keyBuf[ 64 ]; in GetKeyAtIndex() local
286 … m_byteArray.size(), &m_byteArray[ 0 ], ( uint16_t ) index, sizeof( keyBuf ), keyBuf, &rawValueLen… in GetKeyAtIndex()
292 ok = UTF8ToBSTR( keyBuf, temp ); in GetKeyAtIndex()
316 char keyBuf[ 64 ]; in GetValueAtIndex() local
332 … m_byteArray.size(), &m_byteArray[ 0 ], ( uint16_t ) index, sizeof( keyBuf ), keyBuf, &rawValueLen… in GetValueAtIndex()
/external/python/cpython2/PC/
Dgetpathp.c236 TCHAR *keyBuf = NULL; in getpythonregpath() local
243 keyBuf = keyBufPtr = malloc(sizeof(keyPrefix) + in getpythonregpath()
246 if (keyBuf==NULL) goto done; in getpythonregpath()
256 keyBuf, /* subkey */ in getpythonregpath()
274 TCHAR keyBuf[MAX_PATH+1]; in getpythonregpath() local
278 DWORD rc = RegEnumKeyEx(newKey, index, keyBuf, &reqdSize, in getpythonregpath()
283 keyBuf, /* subkey */ in getpythonregpath()
363 if (keyBuf) in getpythonregpath()
364 free(keyBuf); in getpythonregpath()
/external/icu/icu4c/source/i18n/
Dzonemeta.cpp715 char keyBuf[ZID_KEY_MAX + 1]; in getZoneIdByMetazone() local
723 keyLen = mzid.extract(0, mzid.length(), keyBuf, ZID_KEY_MAX + 1, US_INV); in getZoneIdByMetazone()
724 keyBuf[keyLen] = 0; in getZoneIdByMetazone()
728 ures_getByKey(rb, keyBuf, rb, &status); in getZoneIdByMetazone()
733 keyLen = region.extract(0, region.length(), keyBuf, ZID_KEY_MAX + 1, US_INV); in getZoneIdByMetazone()
734 keyBuf[keyLen] = 0; in getZoneIdByMetazone()
735 tzid = ures_getStringByKey(rb, keyBuf, &tzidLen, &status); in getZoneIdByMetazone()
/external/mdnsresponder/mDNSWindows/DLL.NET/
Ddnssd_NET.cpp1178 char keyBuf[255];
1187 …err = TXTRecordGetItemAtIndex(txtRecord->Length, p1, index, keyBufLen, keyBuf, &valueLen, (const v…
1194 *key = ConvertToString(keyBuf);
/external/icu/icu4c/source/test/intltest/
Dregcoll.cpp1179 static int32_t calcKeyIncremental(UCollator *coll, const UChar* text, int32_t len, uint8_t *keyBuf,… in calcKeyIncremental() argument
1188 … int32_t keyPartLen = ucol_nextSortKeyPart(coll, &uiter, state, &keyBuf[keyLen], count, &status); in calcKeyIncremental()