Searched defs:aOffset (Results 1 - 11 of 11) sorted by relevance

/vbox/src/libs/xpcom18a4/java/src/
H A DnsFileStreams.cpp357 nsFileInputStream::Seek(PRInt32 aWhence, PRInt64 aOffset) argument
370 return nsFileStream::Seek(aWhence, aOffset);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsMultiplexInputStream.cpp315 nsMultiplexInputStream::Seek(PRInt32 aWhence, PRInt64 aOffset) argument
320 if (aWhence == NS_SEEK_SET && aOffset == 0)
H A DnsStorageStream.cpp492 nsStorageInputStream::Seek(PRInt32 aWhence, PRInt64 aOffset) argument
494 nsInt64 pos = aOffset;
H A DnsFastLoadFile.cpp1181 nsFastLoadFileReader::Seek(PRInt32 aWhence, PRInt64 aOffset) argument
1185 return seekable->Seek(aWhence, aOffset);
2274 nsFastLoadFileWriter::Seek(PRInt32 aWhence, PRInt64 aOffset) argument
2278 return seekable->Seek(aWhence, aOffset);
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTStringObsolete.cpp44 * aOffset specifies starting index
49 nsTString_CharT::Find( const nsCString& aString, PRBool aIgnoreCase, PRInt32 aOffset, PRInt32 aCount) const argument
51 // this method changes the meaning of aOffset and aCount:
52 Find_ComputeSearchRange(mLength, aString.Length(), aOffset, aCount);
54 PRInt32 result = FindSubstring(mData + aOffset, aCount, aString.get(), aString.Length(), aIgnoreCase);
56 result += aOffset;
61 nsTString_CharT::Find( const char* aString, PRBool aIgnoreCase, PRInt32 aOffset, PRInt32 aCount) const argument
63 return Find(nsDependentCString(aString), aIgnoreCase, aOffset, aCount);
70 * aOffset specifies starting index
75 nsTString_CharT::RFind( const nsCString& aString, PRBool aIgnoreCase, PRInt32 aOffset, PRInt3 argument
87 RFind( const char* aString, PRBool aIgnoreCase, PRInt32 aOffset, PRInt32 aCount) const argument
98 RFindChar( PRUnichar aChar, PRInt32 aOffset, PRInt32 aCount) const argument
[all...]
H A DnsStringObsolete.cpp1006 nsString::Find( const nsAFlatString& aString, PRInt32 aOffset, PRInt32 aCount ) const argument
1008 // this method changes the meaning of aOffset and aCount:
1009 Find_ComputeSearchRange(mLength, aString.Length(), aOffset, aCount);
1011 PRInt32 result = FindSubstring(mData + aOffset, aCount, aString.get(), aString.Length(), PR_FALSE);
1013 result += aOffset;
1018 nsString::Find( const PRUnichar* aString, PRInt32 aOffset, PRInt32 aCount ) const argument
1020 return Find(nsDependentString(aString), aOffset, aCount);
1024 nsString::RFind( const nsAFlatString& aString, PRInt32 aOffset, PRInt32 aCount ) const argument
1026 // this method changes the meaning of aOffset and aCount:
1027 RFind_ComputeSearchRange(mLength, aString.Length(), aOffset, aCoun
1036 RFind( const PRUnichar* aString, PRInt32 aOffset, PRInt32 aCount ) const argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsStringAPI.h318 * @param aOffset specifies where in the string to insert aData
330 NS_StringInsertData(nsAString &aStr, PRUint32 aOffset, const PRUnichar *aData, argument
333 return NS_StringSetDataRange(aStr, aOffset, 0, aData, aDataLength);
543 * @param aOffset specifies where in the string to insert aData
555 NS_CStringInsertData(nsACString &aStr, PRUint32 aOffset, const char *aData, argument
558 return NS_CStringSetDataRange(aStr, aOffset, 0, aData, aDataLength);
/vbox/src/VBox/Main/src-client/
H A DGuestFileImpl.cpp320 HRESULT GuestFile::getOffset(LONG64 *aOffset) argument
327 *aOffset = mData.mOffCurrent;
1306 HRESULT GuestFile::readAt(LONG64 aOffset, ULONG aToRead, ULONG aTimeoutMS, std::vector<BYTE> &aData) argument
1320 int vrc = i_readDataAt(aOffset, aToRead, aTimeoutMS,
1336 mData.mOpenInfo.mFileName.c_str(), aOffset, vrc);
1346 HRESULT GuestFile::seek(LONG64 aOffset, FileSeekType_T aWhence) argument
1371 int vrc = i_seekAt(aOffset, eSeekType,
1380 mData.mOpenInfo.mFileName.c_str(), aOffset, vrc);
1429 HRESULT GuestFile::writeAt(LONG64 aOffset, const std::vector<BYTE> &aData, ULONG aTimeoutMS, ULONG *aWritten) argument
1450 aData.size(), mData.mOpenInfo.mFileName.c_str(), aOffset, vr
[all...]
H A DGuestSessionImpl.cpp3092 0 /* aOffset */, aFile);
3097 const com::Utf8Str &aSharingMode, ULONG aCreationMode, LONG64 aOffset,
3127 openInfo.mInitialOffset = aOffset;
3096 fileOpenEx(const com::Utf8Str &aPath, const com::Utf8Str &aOpenMode, const com::Utf8Str &aDisposition, const com::Utf8Str &aSharingMode, ULONG aCreationMode, LONG64 aOffset, ComPtr<IGuestFile> &aFile) argument
/vbox/src/VBox/Main/src-server/
H A DNATNetworkImpl.cpp495 HRESULT NATNetwork::addLocalMapping(const com::Utf8Str &aHostId, LONG aOffset) argument
512 if (((net.u + aOffset) & mask.u) != net.u)
522 if (aOffset == 0) /* erase */
529 (uint32_t)aOffset);
533 (*it).u32Offset = aOffset;
543 (uint32_t)aOffset);
550 off.u32Offset = (uint32_t)aOffset;
H A DMachineImpl.cpp6634 HRESULT Machine::readLog(ULONG aIdx, LONG64 aOffset, LONG64 aSize, std::vector<BYTE> &aData) argument
6659 vrc = RTFileReadAt(LogFile, aOffset, cbData? &aData.front(): NULL, cbData, &cbData);

Completed in 416 milliseconds