OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mMaxFileSize
(Results
1 - 7
of
7
) sorted by null
/frameworks/av/media/mtp/
MtpStorage.h
34
uint64_t
mMaxFileSize
;
54
inline uint64_t getMaxFileSize() const { return
mMaxFileSize
; }
/frameworks/base/media/java/android/mtp/
MtpStorage.java
36
private final long
mMaxFileSize
;
44
mMaxFileSize
= volume.getMaxFileSize();
111
return
mMaxFileSize
;
/frameworks/base/core/java/android/os/storage/
StorageVolume.java
48
private final long
mMaxFileSize
;
71
mMaxFileSize
= maxFileSize;
84
mMaxFileSize
= in.readLong();
94
template.mAllowMassStorage, template.
mMaxFileSize
, owner);
195
return
mMaxFileSize
;
273
pw.printPair("
mMaxFileSize
",
mMaxFileSize
);
308
parcel.writeLong(
mMaxFileSize
);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java
141
private long
mMaxFileSize
= 0;
259
mMediaRecorder.setMaxFileSize(
mMaxFileSize
);
/packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java
93
private long
mMaxFileSize
= 0;
214
mMaxFileSize
= maxFileSize;
693
recorder.setInputValue("maxFileSize",
mMaxFileSize
);
[
all
...]
/packages/apps/Camera/src/com/android/camera/
EffectsRecorder.java
151
private long
mMaxFileSize
= 0;
387
mMaxFileSize
= maxFileSize;
[
all
...]
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java
219
long
mMaxFileSize
= -1; // can be specified in the intent
263
mMaxFileSize
= i.getLongExtra(EXTRA_MAX_BYTES, -1);
290
mMaxFileSize
= recorderState.getLong(MAX_FILE_SIZE_KEY, -1);
317
recorderState.putLong(MAX_FILE_SIZE_KEY,
mMaxFileSize
);
394
if (
mMaxFileSize
!= -1) {
396
mRecorder.sampleFile(),
mMaxFileSize
);
Completed in 276 milliseconds