Searched refs:volume (Results 1 - 25 of 137) sorted by relevance

123456

/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DAllAudioCapabilities.idl32 readonly attribute CapabilityRange volume;
H A DMediaSourceStates.h49 unsigned long volume() const { return m_sourceStates.volume(); } function in class:WebCore::MediaSourceStates
H A DMediaSourceStates.idl42 [CustomGetter] readonly attribute unsigned long? volume;
H A DMediaStreamCapabilities.h55 virtual RefPtr<CapabilityRange> volume() const;
/macosx-10.10/xnu-2782.1.97/bsd/hfs/hfscommon/headers/
H A DCatalogPrivate.h93 extern OSErr LocateCatalogNodeByKey ( const ExtendedVCB *volume, u_int32_t hint, CatalogKey *keyPtr,
96 extern OSErr LocateCatalogRecord( const ExtendedVCB *volume, HFSCatalogNodeID folderID, const CatalogName *name,
99 extern OSErr LocateCatalogNodeWithRetry ( const ExtendedVCB *volume, HFSCatalogNodeID folderID, ConstStr31Param pascalName,
102 extern OSErr FlushCatalog( ExtendedVCB *volume);
111 extern OSErr BuildCatalogKeyUTF8(ExtendedVCB *volume, HFSCatalogNodeID parentID, const unsigned char *name,
/macosx-10.10/msdosfs-209.1.1/
H A Dmsdosfs.py691 def __init__(self, volume, head, length=0):
692 self.volume = volume
701 bytesPerCluster = self.volume.bytesPerCluster
707 cluster = self.volume.fat[cluster]
723 bytesPerCluster = self.volume.bytesPerCluster
731 buf = self.volume.ReadCluster(cluster)
738 cluster = self.volume.fat[cluster]
746 result.append(self.volume.ReadCluster(cluster))
747 cluster = self.volume
[all...]
H A Dtest_msdos_userfs.py112 # Use newfs_msdos to create an empty volume
135 # If there is a prepareContent class method, then "mount" the volume
139 volume = msdosfs.msdosfs(dev)
140 klass.prepareContent(volume)
141 volume.flush()
158 "Verify the volume is marked dirty."
163 "Verify the volume is marked clean."
204 def prepareContent(klass, volume):
230 slotsPerCluster = volume.bytesPerCluster / 32
255 root = volume
[all...]
/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/
H A Dmovie.tcl33 set vol [expr 64 + [%W cget -volume]]
35 %W configure -volume $vol
42 set vol [expr -64 + [%W cget -volume]]
44 %W configure -volume $vol
H A DosxMacTcl.c319 * directory. (Ie. volume & dir = 0)
410 fileSpecPtr->vRefNum = catalogInfo.volume;
557 * which volume to set.
561 SYS_BEEP_VOLUME, /* This sets the volume for SysBeep calls */
571 static void SetSoundVolume(int volume, enum WhichVolume mode);
599 int volume = -1, length;
631 if (!strcmp(Tcl_GetStringFromObj(objv[1], &length), "-volume")) {
632 Tcl_GetIntFromObj(interp, objv[2], &volume);
637 if (!strcmp(Tcl_GetStringFromObj(objv[1], &length), "-volume")) {
638 Tcl_GetIntFromObj(interp, objv[2], &volume);
597 int volume = -1, length; local
726 SetSoundVolume( int volume, enum WhichVolume mode) argument
[all...]
H A DSeqGrabber.h71 double volume; /* Channel volume: -1.0 - +1.0. */ member in struct:SeqGrabber
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSMediaSourceStatesCustom.cpp82 JSValue JSMediaSourceStates::volume(ExecState*) const function in class:WebCore::JSMediaSourceStates
87 return jsNumber(impl().volume());
/macosx-10.10/msdosfs-209.1.1/userfs_plugin/
H A Dmsdosfs.c33 uint32_t fatOffset; // Offset, in bytes, from start of volume to start of active FAT
38 uint32_t rootSector; // Offset, in sectors, from start of volume to start of root directory
42 uint32_t clusterOffset; // Offset, in sectors, from start of volume to start of first cluster
51 userfs_volume_t volume; member in struct:_userfs_stream_s
122 static errno_t msdosfs_volume_open(userfs_device_t device, bool locked, userfs_volume_t *volume);
123 static bool msdosfs_volume_is_locked(userfs_volume_t volume);
124 static errno_t msdosfs_volume_flush(userfs_volume_t volume);
125 static errno_t msdosfs_volume_close(userfs_volume_t volume);
126 static errno_t msdosfs_item_get_info(userfs_volume_t volume, const char *path, xpc_object_t info);
127 static errno_t msdosfs_dir_enumerate(userfs_volume_t volume, cons
540 chain_free(userfs_volume_t volume, uint32_t cluster, uint32_t *numFreed) argument
616 volume_update_fsinfo(userfs_volume_t volume, uint32_t numFreed) argument
646 volume_offset_for_cluster(userfs_volume_t volume, uint32_t cluster) argument
651 volume_read(userfs_volume_t volume, void *buffer, size_t length, off_t offset) argument
800 volume_lookup(userfs_volume_t volume, const char *path, userfs_stream_t *result, userfs_stream_t *result_parent) argument
1502 userfs_volume_t volume = stream->volume; local
1559 msdosfs_volume_open(userfs_device_t device, bool locked, userfs_volume_t *volume) argument
1992 msdosfs_volume_is_locked(userfs_volume_t volume) argument
1997 msdosfs_volume_mark_dirty(userfs_volume_t volume, bool dirty) argument
2075 msdosfs_volume_flush(userfs_volume_t volume) argument
2088 msdosfs_volume_close(userfs_volume_t volume) argument
2095 msdosfs_item_get_info(userfs_volume_t volume, const char *path, xpc_object_t info) argument
2148 msdosfs_dir_enumerate(userfs_volume_t volume, const char *path, __strong xpc_object_t *state, xpc_object_t children) argument
2219 msdosfs_item_delete(userfs_volume_t volume, const char *path) argument
2268 msdosfs_stream_open(userfs_volume_t volume, const char *path, userfs_stream_t *stream) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DSpeechSynthesisUtterance.h55 float volume() const { return m_platformUtterance->volume(); } function in class:WebCore::final
56 void setVolume(float volume) { m_platformUtterance->setVolume(volume); } argument
H A DSpeechSynthesisUtterance.idl35 attribute unrestricted float volume;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPlatformSpeechSynthesisUtterance.h59 float volume() const { return m_volume; } function in class:WebCore::PlatformSpeechSynthesisUtterance
60 void setVolume(float volume) { m_volume = std::max(std::min(1.0f, volume), 0.0f); } argument
/macosx-10.10/WebCore-7600.1.25/platform/mediastream/
H A DMediaStreamSourceStates.h77 unsigned long volume() const { return m_volume; } function in class:WebCore::MediaStreamSourceStates
78 void setVolume(unsigned long volume) { m_volume = volume; } argument
H A DMediaStreamSourceCapabilities.h120 const MediaStreamSourceCapabilityRange& volume() { return m_volume; } function in class:WebCore::MediaStreamSourceCapabilities
121 void setVolumeRange(const MediaStreamSourceCapabilityRange& volume) { m_volume = volume; } argument
/macosx-10.10/WebCore-7600.1.25/html/shadow/
H A DMediaControlElementTypes.cpp211 double volume = value().toDouble(); local
212 if (volume != mediaController()->volume())
213 mediaController()->setVolume(volume, ASSERT_NO_EXCEPTION);
235 void MediaControlVolumeSliderElement::setVolume(double volume) argument
237 if (value().toDouble() != volume)
238 setValue(String::number(volume));
/macosx-10.10/xnu-2782.1.97/bsd/hfs/hfscommon/Catalog/
H A DCatalogUtilities.c50 LocateCatalogNodeByKey(const ExtendedVCB *volume, u_int32_t hint, CatalogKey *keyPtr, argument
68 fcb = GetFileControlBlock(volume->catalogRefNum);
120 result = LocateCatalogRecord(volume, threadParentID, nodeName, kNoHint, keyPtr, dataPtr, newHint);
136 LocateCatalogRecord(const ExtendedVCB *volume, HFSCatalogNodeID folderID, const CatalogName *name, argument
154 fcb = GetFileControlBlock(volume->catalogRefNum);
161 BuildCatalogKey(folderID, name, (volume->vcbSigWord == kHFSPlusSigWord), (CatalogKey *)&searchIterator->key);
216 BuildCatalogKeyUTF8(ExtendedVCB *volume, HFSCatalogNodeID parentID, const unsigned char *name, u_int32_t nameLength, argument
226 if ( volume->vcbSigWord == kHFSPlusSigWord ) {
250 err = utf8_to_hfs(volume, nameLength, name, &key->hfs.nodeName[0]);
279 // Function: Flushes the catalog for a specified volume
284 FlushCatalog(ExtendedVCB *volume) argument
[all...]
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DBlockCache.c42 InitBlockCache(SVCB *volume) argument
44 volume->vcbBlockCache = (void *) &fscache;
55 GetVolumeBlock (SVCB *volume, UInt64 blockNum, GetBlockOptions options, BlockDescriptor *block) argument
65 cache = (Cache_t *) volume->vcbBlockCache;
106 ReleaseVolumeBlock (SVCB *volume, BlockDescriptor *block, ReleaseBlockOptions options) argument
114 cache = (Cache_t *) volume->vcbBlockCache;
159 /* Map file block to volume block */
249 SVCB * volume; local
256 volume = file->fcbVolume;
257 cache = (Cache_t *)volume
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dchrootvfs.tcl23 processes, and mounted volumes besides the volume on which the chroot directory resides are aliased so
31 Usage: mount ?-volume? <existing "chroot" directory> <virtual directory>
39 mount -volume /var/www/htdocs chroot://
64 set volume [lindex $::vfs::template::mount($to) 1]
65 if {$volume != "-volume"} {set volume {}}
72 eval ::vfs::filesystem mount $volume [list $to] \[list [namespace current]::handler \[file normalize \$path\]\]
84 ::vfs::template::chroot::mount -volume /tmp C:/
H A Dtemplatevfs.tcl22 Usage: mount ?-cache <number>? ?-volume? <existing directory> <virtual directory>
31 -volume
32 Volume specified in virtual directory pathname will be mounted as a virtual volume.
120 upvar volume volume
124 if [string equal $volume {}] {set to [::file normalize $to]}
156 set volume [lindex $args [lsearch $args "-volume"]]
159 set args [string map "\" -volume \" { } \" -cache $cache \" { }" " $args "]
175 if [string equal $volume {}] {se
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamerBase.cpp71 // This is called when m_volumeElement receives the notify::volume signal.
72 LOG_MEDIA_MESSAGE("Volume changed to: %f", player->volume());
188 void MediaPlayerPrivateGStreamerBase::setVolume(float volume) argument
193 LOG_MEDIA_MESSAGE("Setting volume: %f", volume);
194 gst_stream_volume_set_volume(m_volumeElement.get(), GST_STREAM_VOLUME_FORMAT_CUBIC, static_cast<double>(volume));
197 float MediaPlayerPrivateGStreamerBase::volume() const function in class:WebCore::MediaPlayerPrivateGStreamerBase
210 double volume; local
211 volume = gst_stream_volume_get_volume(m_volumeElement.get(), GST_STREAM_VOLUME_FORMAT_CUBIC);
214 // volume contro
455 setStreamVolumeElement(GstStreamVolume* volume) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclapplescript/tclapplescript/
H A DosxMacTcl.c319 * directory. (Ie. volume & dir = 0)
409 fileSpecPtr->vRefNum = catalogInfo.volume;
556 * which volume to set.
560 SYS_BEEP_VOLUME, /* This sets the volume for SysBeep calls */
570 static void SetSoundVolume(int volume, enum WhichVolume mode);
598 int volume = -1, length;
630 if (!strcmp(Tcl_GetStringFromObj(objv[1], &length), "-volume")) {
631 Tcl_GetIntFromObj(interp, objv[2], &volume);
636 if (!strcmp(Tcl_GetStringFromObj(objv[1], &length), "-volume")) {
637 Tcl_GetIntFromObj(interp, objv[2], &volume);
596 int volume = -1, length; local
725 SetSoundVolume( int volume, enum WhichVolume mode) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/vu/
H A Ddial_demo.rb15 volume = Tk::Vu::Dial.new(:label=>"Volume", :from=>-0.1, :to=>0.1,
80 if v_volume == volume[:to]
81 v_volume.numeric = volume[:from]
83 v_volume.numeric += volume[:resolution]
95 Tk.grid(f_btns, speed, volume, :sticky=>:news)

Completed in 412 milliseconds

123456