OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fileInfo
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java
298
BluetoothOppSendFileInfo
fileInfo
= BluetoothOppSendFileInfo.generateFileInfo(
300
if (
fileInfo
.mFileName == null ||
fileInfo
.mLength == 0) {
302
Constants.updateShareStatus(mContext1, mInfo.mId,
fileInfo
.mStatus);
307
Log.v(TAG, "filename :" +
fileInfo
.mFileName);
308
Log.v(TAG, "length :" +
fileInfo
.mLength);
309
Log.v(TAG, "mimetype :" +
fileInfo
.mMimetype);
315
updateValues.put(BluetoothShare.FILENAME_HINT,
fileInfo
.mFileName);
316
updateValues.put(BluetoothShare.TOTAL_BYTES,
fileInfo
.mLength);
317
updateValues.put(BluetoothShare.MIMETYPE,
fileInfo
.mMimetype)
[
all
...]
BluetoothOppObexServerSession.java
414
private int receiveFile(BluetoothOppReceiveFileInfo
fileInfo
, Operation op) {
435
updateValues.put(BluetoothShare._DATA,
fileInfo
.mFileName);
441
bos = new BufferedOutputStream(
fileInfo
.mOutputStream, 0x10000);
450
while ((!mInterrupted) && (position !=
fileInfo
.mLength)) {
490
if (position ==
fileInfo
.mLength) {
491
if (D) Log.d(TAG, "Receiving file completed for " +
fileInfo
.mFileName);
494
if (D) Log.d(TAG, "Reading file failed at " + position + " of " +
fileInfo
.mLength);
513
BluetoothOppReceiveFileInfo
fileInfo
= BluetoothOppReceiveFileInfo.generateFileInfo(
517
Log.v(TAG, "filename :" +
fileInfo
.mFileName);
518
Log.v(TAG, "length :" +
fileInfo
.mLength)
[
all
...]
BluetoothOppTransfer.java
338
BluetoothOppSendFileInfo
fileInfo
= null;
339
fileInfo
= BluetoothOppSendFileInfo.generateFileInfo(mContext, info.mUri,
341
if (
fileInfo
.mFileName != null) {
342
updateValues.put(BluetoothShare.FILENAME_HINT,
fileInfo
.mFileName);
343
updateValues.put(BluetoothShare.TOTAL_BYTES,
fileInfo
.mLength);
344
updateValues.put(BluetoothShare.MIMETYPE,
fileInfo
.mMimetype);
[
all
...]
/external/skia/src/ports/
SkOSFile_brew.cpp
53
FileInfo
fileInfo
;
55
IFILE_GetInfo((IFile*)f, &
fileInfo
);
56
return
fileInfo
.dwSize;
/external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp
55
struct stat
fileInfo
;
58
return !stat(fsRep.data(), &
fileInfo
);
158
struct stat
fileInfo
;
160
if (stat(fsRep.data(), &
fileInfo
))
163
result =
fileInfo
.st_size;
174
struct stat
fileInfo
;
176
if (stat(fsRep.data(), &
fileInfo
))
179
result =
fileInfo
.st_mtime;
/external/webkit/Source/WebCore/platform/qt/
FileSystemQt.cpp
109
foreach (const QFileInfo
fileInfo
, fileInfoList) {
110
String entry = String(
fileInfo
.canonicalFilePath());
/external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp
50
FileInfo
info;
153
// So we need to check
fileinfo
.attrib.
156
FileInfo
fileInfo
;
157
if (IFILEMGR_GetInfo(fileManager, folder.utf8().data(), &
fileInfo
) != SUCCESS)
160
return
fileInfo
.attrib & _FA_DIR;
/external/collada/src/dae/
daeZAEUncompressHandler.cpp
188
unz_file_info
fileInfo
;
190
int fileInfoResult = unzGetCurrentFileInfo(zipFile, &
fileInfo
, currentFileName, sizeof(currentFileName), 0, 0, 0, 0);
/external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp
56
static bool getFileInfo(const String& path, BY_HANDLE_FILE_INFORMATION&
fileInfo
)
65
bool rtn = GetFileInformationByHandle(hFile, &
fileInfo
) ? true : false;
/external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp
[
all
...]
/external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp
575
GRefPtr<GFileInfo>
fileInfo
= adoptGRef(g_file_query_info(file.get(),
579
if (!
fileInfo
)
586
outputBuffer.resize(g_file_info_get_size(
fileInfo
.get()));
Completed in 56 milliseconds