HomeSort by relevance Sort by last modified time
    Searched refs:Volume (Results 1 - 25 of 44) sorted by null

1 2

  /bootable/recovery/
roots.h 26 // Load and parse volume data from /etc/recovery.fstab.
29 // Return the Volume* record for this path (or NULL).
30 Volume* volume_for_path(const char* path);
32 // Make sure that the volume 'path' is on is mounted. Returns 0 on
33 // success (volume is mounted).
36 // Make sure that the volume 'path' is on is mounted. Returns 0 on
37 // success (volume is unmounted);
40 // Reformat the given volume (must be the mount point only, eg
41 // "/cache"), no paths permitted. Attempts to unmount the volume if
43 int format_volume(const char* volume);
    [all...]
bootloader.cpp 29 static int get_bootloader_message_mtd(struct bootloader_message *out, const Volume* v);
30 static int set_bootloader_message_mtd(const struct bootloader_message *in, const Volume* v);
31 static int get_bootloader_message_block(struct bootloader_message *out, const Volume* v);
32 static int set_bootloader_message_block(const struct bootloader_message *in, const Volume* v);
35 Volume* v = volume_for_path("/misc");
37 LOGE("Cannot load volume /misc!\n");
50 Volume* v = volume_for_path("/misc");
52 LOGE("Cannot load volume /misc!\n");
72 const Volume* v) {
98 const Volume* v)
    [all...]
common.h 42 typedef struct fstab_rec Volume;
roots.cpp 66 Volume* v = &fstab->recs[i];
73 Volume* volume_for_path(const char* path) {
78 Volume* v = volume_for_path(path);
80 LOGE("unknown volume for path [%s]\n", path);
98 // volume is already mounted
130 Volume* v = volume_for_path(path);
132 LOGE("unknown volume for path [%s]\n", path);
150 // volume is already unmounted
171 int format_volume(const char* volume) {
172 Volume* v = volume_for_path(volume)
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 55 * \brief A simple bounding volume hierarchy based on AlignedBox
62 * This class provides a simple (as opposed to optimized) implementation of a bounding volume hierarchy analogous to a Kd-tree.
74 typedef AlignedBox<Scalar, Dim> Volume;
75 typedef std::vector<Volume, aligned_allocator<Volume> > VolumeList;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
89 * Requires that bounding_box(Object) return a Volume. */
130 /** Given an \a index of a node, on exit, \a outVBegin and \a outVEnd range over the indices of the volume children of the node
155 } else { //if the first child is a volume and the second is an object
164 inline const Volume &getVolume(Index index) cons
    [all...]
BVAlgorithms.h 74 bool intersectVolume(const BVH::Volume &volume) //returns true if volume intersects the query
86 bool intersectVolumeVolume(const BVH1::Volume &v1, const BVH2::Volume &v2) //returns true if product of volumes intersects the query
87 bool intersectVolumeObject(const BVH1::Volume &v1, const BVH2::Object &o2) //returns true if the volume-object product intersects the query
88 bool intersectObjectVolume(const BVH1::Object &o1, const BVH2::Volume &v2) //returns true if the volume-object product intersects the query
97 typedef internal::intersector_helper1<typename BVH1::Volume, typename BVH1::Object, typename BVH2::Object, Intersector> Helper1
    [all...]
  /build/core/combo/
mac_version.mk 31 # or /Volume/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.?.sdk
  /external/chromium_org/content/renderer/media/
webrtc_audio_capturer.h 83 // Volume APIs used by WebRtcAudioDeviceImpl.
85 void SetVolume(int volume);
86 int Volume() const;
112 void GetAudioProcessingParams(base::TimeDelta* delay, int* volume,
138 double volume,
193 // Stores latest microphone volume received in a CaptureData() callback.
webrtc_audio_capturer.cc 59 double volume,
67 volume,
440 void WebRtcAudioCapturer::SetVolume(int volume) {
442 DCHECK_LE(volume, MaxVolume());
443 double normalized_volume = static_cast<double>(volume) / MaxVolume();
449 int WebRtcAudioCapturer::Volume() const {
460 double volume,
466 DCHECK_LE(volume, 1.0);
468 // We have a special situation on Linux where the microphone volume can be
469 // "higher than maximum". The input volume slider in the sound preferenc
    [all...]
webrtc_audio_device_impl.cc 362 int32_t WebRtcAudioDeviceImpl::SetMicrophoneVolume(uint32_t volume) {
363 DVLOG(1) << "WebRtcAudioDeviceImpl::SetMicrophoneVolume(" << volume << ")";
372 capturer->SetVolume(volume);
377 int32_t WebRtcAudioDeviceImpl::MicrophoneVolume(uint32_t* volume) const {
386 *volume = static_cast<uint32_t>(capturer->Volume());
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfSoundActionDictionary_autogen.cpp 35 double SkPdfSoundActionDictionary::Volume(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Volume", "");
44 return get("Volume", "") != NULL;
SkPdfMovieActivationDictionary_autogen.cpp 47 double SkPdfMovieActivationDictionary::Volume(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Volume", "");
56 return get("Volume", "") != NULL;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/
background.js 12 // The value is a Volume object.
15 // Defines a volume object that contains information about a mounted file
17 function Volume(entry, metadata, opt_openedFiles) {
21 // The volume metadata.
45 saveState(); // Remove volume from local storage state.
168 volumes[fileSystemId] = new Volume(entry, metadata,
198 // Mount the volume and save its information in local storage
202 volumes[displayPath] = new Volume(item.entry, metadata);
  /external/chromium_org/ui/file_manager/file_manager/background/js/
volume_manager.js 8 * Represents each volume, such as "drive", "download directory", each "USB
11 * @param {VolumeManagerCommon.VolumeType} volumeType The type of the volume.
12 * @param {string} volumeId ID of the volume.
13 * @param {DOMFileSystem} fileSystem The file system object for this volume.
18 * @param {?string} devicePath Identifier of the device that the volume belongs
20 * @param {boolean} isReadOnly True if the volume is read only.
23 * @param {string} label Label of the volume.
24 * @param {string} extensionId Id of the extension providing this volume. Empty
67 // Note: This represents if the mounting of the volume is successfully done
82 * @return {VolumeManagerCommon.VolumeType} Volume type
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
background.js 9 * @param {VolumeManager} volumeManager Volume manager.
19 * Volume manager.
  /external/libnfc-nci/src/udrv/include/
ucodec.h 82 #define UCODEC_AUDIO_VOLUME 8 /* Volume settings */
195 UINT8 Volume; /* 0 to mute. 0xFF for the max volume */
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
volume_manager_wrapper.js 220 * Obtains a volume info containing the passed entry.
221 * @param {Entry} entry Entry on the volume to be returned.
230 * Obtains a volume information of the current profile.
231 * @param {VolumeManagerCommon.VolumeType} volumeType Volume type.
232 * @return {VolumeInfo} Found volume info.
294 * Requests unmount the specified volume.
295 * @param {!VolumeInfo} volumeInfo Volume to be unmounted.
312 * Filters volume info by referring driveEnabled.
314 * @param {VolumeInfo} volumeInfo Volume info.
315 * @return {VolumeInfo} Null if the drive is disabled and the given volume i
    [all...]
file_grid.js 38 * @param {VolumeManagerWrapper} volumeManager Volume manager instance.
108 * @param {VolumeManagerWrapper} volumeManager Volume manager instance.
142 * @param {VolumeManagerWrapper} volumeManager Volume manager instance.
229 // TODO(mtomasz): Pass the metadata cache and the volume manager directly
navigation_list_model.js 61 * @param {!VolumeInfo} volumeInfo Volume info for the volume. Cannot be null.
136 // The volume is mounted or unmounted.
226 // the folder shortcut list nor in the volume info list.
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
func_test_manager.cc 180 uint32_t volume(0);
185 EXPECT_EQ(0, _audioDevice->MicrophoneVolume(&volume));
186 if (volume == 0)
192 volume += (stepScale * stepSize);
193 if (volume > maxVolume)
196 volume = 0;
199 EXPECT_EQ(0, _audioDevice->SetMicrophoneVolume(volume));
464 uint32_t volume(0);
469 EXPECT_EQ(0, _audioDevice->SpeakerVolume(&volume));
470 if (volume == 0
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
file_manager_ui.js 90 * Volume icon of location information on the toolbar.
228 this.element_.querySelector('#location-volume-icon');
preview_panel.js 13 * @param {VolumeManagerWrapper} volumeManager Volume manager.
374 * @param {VolumeManagerWrapper} volumeManager Volume manager instance.
breadcrumbs_controller.js 11 * @param {VolumeManagerWrapper} volumeManager Volume manager.
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-codes.js 125 'Volume-Down': {keyCode: 0xAE, keyName: 'VolumeDown',
127 'Volume-Up': {keyCode: 0xAF, keyName: 'VolumeUp', shiftModifier: false},
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPencode.cc 82 int makeDTMFpayload(unsigned char* payload_data, int Event, int End, int Volume, int Duration);
    [all...]

Completed in 817 milliseconds

1 2