Searched defs:inLength (Results 1 - 4 of 4) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsFileSpec.h | 251 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 D | nsFileSpec.cpp | 121 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 D | nsFileSpecMac.cpp | 334 size_t inLength = strlen(inPathNamePtr); local 341 if (inLength < 255) 351 err = FSpLocationFromFullPath(inLength, inPathNamePtr, &ioSpec);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsLocalFileMac.cpp | 658 size_t inLength = strlen(filePath); local 697 if (inLength < 255) 709 err = ::FSpLocationFromFullPath(inLength, filePath, outSpec);
|
Completed in 3939 milliseconds