Searched defs:inLength (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpec.h251 nsSimpleCharString(const char* inData, PRUint32 inLength);
287 void SetLength(PRUint32 inLength) { ReallocData(inLength); } argument
288 void CopyFrom(const char* inData, PRUint32 inLength);
297 void ReallocData(PRUint32 inLength);
H A DnsFileSpec.cpp121 nsSimpleCharString::nsSimpleCharString(const char* inData, PRUint32 inLength) argument
125 CopyFrom(inData, inLength);
203 void nsSimpleCharString::CopyFrom(const char* inData, PRUint32 inLength) argument
208 ReallocData(inLength);
211 if (inLength != 0) {
212 memcpy(mData->mString, inData, inLength);
214 mData->mString[inLength] = '\0';
267 void nsSimpleCharString::ReallocData(PRUint32 inLength) argument
273 PRUint32 newAllocLength = CalculateAllocLength(inLength);
283 mData->mLength = inLength;
[all...]
H A DnsFileSpecMac.cpp334 size_t inLength = strlen(inPathNamePtr); local
341 if (inLength < 255)
351 err = FSpLocationFromFullPath(inLength, inPathNamePtr, &ioSpec);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileMac.cpp658 size_t inLength = strlen(filePath); local
697 if (inLength < 255)
709 err = ::FSpLocationFromFullPath(inLength, filePath, outSpec);

Completed in 66 milliseconds