/bootable/recovery/mtdutils/ |
mounts.h | 33 int unmount_mounted_volume(const MountedVolume *volume); 35 int remount_read_only(const MountedVolume* volume);
|
mounts.c | 46 free_volume_internals(const MountedVolume *volume, int zero) 48 free((char *)volume->device); 49 free((char *)volume->mount_point); 50 free((char *)volume->filesystem); 51 free((char *)volume->flags); 53 memset((void *)volume, 0, sizeof(*volume)); 78 /* Free the old volume strings. 202 unmount_mounted_volume(const MountedVolume *volume) 205 * to unmount a volume they already unmounted using thi [all...] |
/external/chromium_org/third_party/webrtc/voice_engine/ |
voe_volume_control_impl.h | 23 virtual int SetSpeakerVolume(unsigned int volume); 25 virtual int GetSpeakerVolume(unsigned int& volume); 27 virtual int SetMicVolume(unsigned int volume); 29 virtual int GetMicVolume(unsigned int& volume);
|
/external/chromium_org/third_party/webrtc/sound/ |
soundinputstreaminterface.h | 31 // Retrieves the current input volume for this stream. Nominal range is 32 // defined by SoundSystemInterface::k(Max|Min)Volume, but values exceeding the 34 // volume currently in use by the OS, not a cached value from a previous 35 // (Get|Set)Volume() call. 36 virtual bool GetVolume(int *volume) = 0; 38 // Changes the input volume for this stream. Nominal range is defined by 39 // SoundSystemInterface::k(Max|Min)Volume. The effect of exceeding kMaxVolume 41 virtual bool SetVolume(int volume) = 0;
|
soundoutputstreaminterface.h | 36 // Retrieves the current output volume for this stream. Nominal range is 37 // defined by SoundSystemInterface::k(Max|Min)Volume, but values exceeding the 39 // volume currently in use by the OS, not a cached value from a previous 40 // (Get|Set)Volume() call. 41 virtual bool GetVolume(int *volume) = 0; 43 // Changes the output volume for this stream. Nominal range is defined by 44 // SoundSystemInterface::k(Max|Min)Volume. The effect of exceeding kMaxVolume 46 virtual bool SetVolume(int volume) = 0;
|
nullsoundsystem.cc | 48 virtual bool GetVolume(int *volume) { 49 *volume = SoundSystemInterface::kMinVolume; 53 virtual bool SetVolume(int volume) { 82 virtual bool GetVolume(int *volume) { 83 *volume = SoundSystemInterface::kMinVolume; 87 virtual bool SetVolume(int volume) {
|
/external/chromium_org/media/audio/ |
audio_io.h | 93 // Sets the relative volume, with range [0.0, 1.0] inclusive. 94 virtual void SetVolume(double volume) = 0; 96 // Gets the relative volume, with range [0.0, 1.0] inclusive. 97 virtual void GetVolume(double* volume) = 0; 116 double volume) {}; 123 double volume) {}; 154 // Returns the maximum microphone analog volume or 0.0 if device does not 155 // have volume control. 158 // Sets the microphone analog volume, with range [0, max_volume] inclusive. 159 virtual void SetVolume(double volume) = 0 [all...] |
audio_output_proxy.cc | 63 void AudioOutputProxy::SetVolume(double volume) { 65 volume_ = volume; 66 dispatcher_->StreamVolumeSet(this, volume); 69 void AudioOutputProxy::GetVolume(double* volume) { 71 *volume = volume_;
|
audio_input_ipc.h | 44 // Called when the input stream volume has changed. 45 virtual void OnVolume(double volume) = 0; 79 // Sets the volume of the audio stream. 80 virtual void SetVolume(double volume) = 0;
|
audio_output_proxy.h | 38 virtual void SetVolume(double volume) OVERRIDE; 39 virtual void GetVolume(double* volume) OVERRIDE; 57 // Need to save volume here, so that we can restore it in case the stream
|
fake_audio_output_stream.h | 29 virtual void SetVolume(double volume) OVERRIDE; 30 virtual void GetVolume(double* volume) OVERRIDE;
|
virtual_audio_output_stream.cc | 64 void VirtualAudioOutputStream::SetVolume(double volume) { 66 volume_ = volume; 69 void VirtualAudioOutputStream::GetVolume(double* volume) { 71 *volume = volume_;
|
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/ |
volume_test.cc | 16 // The hardware volume may be more coarsely quantized than [0, 255], so 29 void SetAndVerifyMicVolume(unsigned int volume) { 30 bool success = voe_volume_control_->SetMicVolume(volume) == 0; 35 TEST_LOG("Failed to set microphone volume to %u.\n", volume); 45 EXPECT_EQ(volume, test_volume); 47 TEST_LOG("Failed to get the microphone volume."); 87 // Valid volume range: [0, 255] 99 unsigned int volume = 1000; local 100 EXPECT_EQ(0, voe_volume_control_->GetSpeakerVolume(volume)); 112 unsigned int volume; local 139 unsigned int volume; local 163 unsigned int volume = 1000; local [all...] |
/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...] |
/external/chromium_org/chrome/common/ |
tts_utterance_request.cc | 9 volume(1.0),
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
remoteaudiosource.cc | 52 void RemoteAudioSource::SetVolume(double volume) { 53 ASSERT(volume >= 0 && volume <= 10); 56 (*it)->OnSetVolume(volume);
|
/external/chromium_org/third_party/webrtc/voice_engine/include/mock/ |
mock_voe_volume_control.h | 24 MOCK_METHOD1(SetSpeakerVolume, int(unsigned int volume)); 25 MOCK_METHOD1(GetSpeakerVolume, int(unsigned int& volume)); 28 MOCK_METHOD1(SetMicVolume, int(unsigned int volume)); 29 MOCK_METHOD1(GetMicVolume, int(unsigned int& volume));
|
/external/chromium_org/third_party/webrtc/voice_engine/include/ |
voe_volume_control.h | 13 // - Speaker volume controls. 14 // - Microphone volume control. 24 // VoEVolumeControl* volume = VoEVolumeControl::GetInterface(voe); 28 // volume->SetInputMute(ch, true); 33 // volume->Release(); 59 // Sets the speaker |volume| level. Valid range is [0,255]. 60 virtual int SetSpeakerVolume(unsigned int volume) = 0; 62 // Gets the speaker |volume| level. 63 virtual int GetSpeakerVolume(unsigned int& volume) = 0; 65 // Sets the microphone volume level. Valid range is [0,255] [all...] |
/external/chromium_org/media/base/ |
audio_capturer_source.h | 29 double volume, 56 // Sets the capture volume, with range [0.0, 1.0] inclusive. 57 virtual void SetVolume(double volume) = 0;
|
fake_audio_render_callback.h | 47 // Set volume information used by ProvideAudioTransformInput(). 48 void set_volume(double volume) { volume_ = volume; }
|
audio_renderer_sink.h | 55 // Sets the playback volume, with range [0.0, 1.0] inclusive. 57 virtual bool SetVolume(double volume) = 0;
|
mock_audio_renderer_sink.h | 22 MOCK_METHOD1(SetVolume, bool(double volume));
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/ |
TrackMetaData.java | 30 private float volume; field in class:TrackMetaData 116 return volume; 119 public void setVolume(float volume) { 120 this.volume = volume;
|
/external/chromium_org/chrome/browser/extensions/api/system_private/ |
system_private_api.h | 58 void DispatchVolumeChangedEvent(double volume, bool is_volume_muted);
|
/external/chromium_org/content/renderer/media/ |
media_stream_audio_renderer.h | 29 // Sets the output volume. 30 virtual void SetVolume(float volume) = 0;
|