Searched refs:filesystem (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10/DiskArbitration-268/diskarbitrationd/
H A DDAFileSystem.h51 extern CFStringRef _DAFileSystemCopyName( DAFileSystemRef filesystem, CFURLRef mountpoint );
59 extern CFStringRef DAFileSystemGetKind( DAFileSystemRef filesystem );
61 extern CFDictionaryRef DAFileSystemGetProbeList( DAFileSystemRef filesystem );
67 extern void DAFileSystemMount( DAFileSystemRef filesystem,
75 extern void DAFileSystemMountWithArguments( DAFileSystemRef filesystem,
84 extern void DAFileSystemProbe( DAFileSystemRef filesystem,
89 extern void DAFileSystemRename( DAFileSystemRef filesystem,
95 extern void DAFileSystemRepair( DAFileSystemRef filesystem,
100 extern void DAFileSystemRepairQuotas( DAFileSystemRef filesystem,
105 extern void DAFileSystemUnmount( DAFileSystemRef filesystem,
[all...]
H A DDAFileSystem.c140 DAFileSystemRef filesystem = ( DAFileSystemRef ) object; local
147 filesystem->_id );
152 DAFileSystemRef filesystem = ( DAFileSystemRef ) object; local
154 return CFStringCreateWithFormat( kCFAllocatorDefault, NULL, CFSTR( "%@" ), filesystem->_id );
159 __DAFileSystem * filesystem; local
161 filesystem = ( void * ) _CFRuntimeCreateInstance( allocator, __kDAFileSystemTypeID, sizeof( __DAFileSystem ) - sizeof( CFRuntimeBase ), NULL );
163 if ( filesystem )
165 filesystem->_id = CFRetain( id );
166 filesystem->_properties = CFRetain( properties );
169 return filesystem;
174 DAFileSystemRef filesystem = ( DAFileSystemRef ) object; local
190 DAFileSystemRef filesystem = ( DAFileSystemRef ) object; local
354 _DAFileSystemCopyName( DAFileSystemRef filesystem, CFURLRef mountpoint ) argument
419 DAFileSystemRef filesystem = NULL; local
480 DAFileSystemMount( DAFileSystemRef filesystem, CFURLRef device, CFURLRef mountpoint, uid_t userUID, gid_t userGID, DAFileSystemCallback callback, void * callbackContext ) argument
495 DAFileSystemMountWithArguments( DAFileSystemRef filesystem, CFURLRef device, CFURLRef mountpoint, uid_t userUID, gid_t userGID, DAFileSystemCallback callback, void * callbackContext, ... ) argument
610 DAFileSystemProbe( DAFileSystemRef filesystem, CFURLRef device, DAFileSystemProbeCallback callback, void * callbackContext ) argument
715 DAFileSystemRename( DAFileSystemRef filesystem, CFURLRef mountpoint, CFStringRef name, DAFileSystemCallback callback, void * callbackContext ) argument
771 DAFileSystemRepair( DAFileSystemRef filesystem, CFURLRef device, DAFileSystemCallback callback, void * callbackContext ) argument
843 DAFileSystemRepairQuotas( DAFileSystemRef filesystem, CFURLRef mountpoint, DAFileSystemCallback callback, void * callbackContext ) argument
904 DAFileSystemUnmount( DAFileSystemRef filesystem, CFURLRef mountpoint, DAFileSystemCallback callback, void * callbackContext ) argument
912 DAFileSystemUnmountWithArguments( DAFileSystemRef filesystem, CFURLRef mountpoint, DAFileSystemCallback callback, void * callbackContext, ... ) argument
[all...]
H A DDASupport.c339 DAFileSystemRef filesystem; local
345 filesystem = DAFileSystemCreate( kCFAllocatorDefault, path );
347 if ( filesystem )
355 DALogDebug( " created filesystem, id = %@.", filesystem );
357 CFArrayAppendValue( gDAFileSystemList, filesystem );
359 probe = DAFileSystemGetProbeList( filesystem );
363 CFDictionaryApplyFunction( probe, __DAFileSystemProbeListAppendValue, filesystem );
366 CFRelease( filesystem );
H A DDAStage.c863 DAFileSystemRef filesystem; local
865 filesystem = ( void * ) CFDictionaryGetValue( candidate, kDAFileSystemKey );
867 if ( filesystem )
885 kind = DAFileSystemGetKind( filesystem );
887 DADiskSetFileSystem( disk, filesystem );
899 DAFileSystemProbe( filesystem, DADiskGetDevice( disk ), __DAStageProbeCallback, context );
H A DDADisk.h101 extern void DADiskSetFileSystem( DADiskRef disk, DAFileSystemRef filesystem );
H A DDAPrivate.c52 static int __DAFileSystemSetAdoption( DAFileSystemRef filesystem, CFURLRef mountpoint, Boolean adoption ) argument
87 static int __DAFileSystemSetEncoding( DAFileSystemRef filesystem, CFURLRef mountpoint, CFStringEncoding encoding ) argument
H A DDAMount.c736 DAFileSystemRef filesystem = DADiskGetFileSystem( disk ); local
860 if ( CFEqual( kind, DAFileSystemGetKind( filesystem ) ) == FALSE )
1069 if ( CFEqual( DAFileSystemGetKind( filesystem ), CFSTR( "hfs" ) ) )
H A DDADisk.c1293 void DADiskSetFileSystem( DADiskRef disk, DAFileSystemRef filesystem )
1302 if ( filesystem )
1304 CFRetain( filesystem );
1306 disk->_filesystem = filesystem;
/macosx-10.10/CPANInternal-159.1/Filesys-Df-0.92/
H A DDf.pm211 Filesys::Df - Perl extension for filesystem disk space information.
235 open(FILE, "some_file"); # Get information for filesystem at "some_file"
249 This module provides a way to obtain filesystem disk space
260 C<df()> requires a argument that represents the filesystem you want to
270 C<{blocks}> = Total blocks on the filesystem.
272 C<{bfree}> = Total blocks free on the filesystem.
276 quotas on the filesystem, or if the super user has a reserved amount.
280 C<{used}> = Total blocks used on the filesystem.
284 the filesystem has 10% of its space reserved for the superuser, then
294 C<{files}> = Total inodes on the filesystem
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dchrootvfs.tcl12 A chroot virtual filesystem.
14 This virual filesystem has an effect similar to a "chroot" command; it makes the named existing directory appear
15 to be the top of the filesystem and makes the rest of the real filesystem invisible.
17 This vfs does not block access by the "exec" command to the real filesystem outside the chroot directory,
21 running a process safely with limited filesystem access: its file access commands are re-enabled, the exec
27 filesystem access but presents security threats that make access limitations desirable.
68 ::vfs::filesystem unmount $to
72 eval ::vfs::filesystem mount $volume [list $to] \[list [namespace current]::handler \[file normalize \$path\]\]
74 if {$err && ([lindex $errorCode 0] == "POSIX")} {vfs::filesystem posixerro
[all...]
H A Ddeltavfs.tcl10 A delta virtual filesystem. Requires the template vfs in templatevfs.tcl.
15 As the versioning filesystem generates a new separate file for every file edit, this filesystem will
H A Dtemplatevfs.tcl12 The template virtual filesystem is designed as a prototype on which to build new virtual
64 In order to create a new virtual filesystem:
69 2. rewrite the copied procedures to retrieve and handle virtual filesystem
181 if {[lsearch [::vfs::filesystem info] $to] != -1} {::vfs::filesystem unmount $to}
194 eval ::vfs::filesystem mount $volume \$to$div \[list [namespace current]::handler \$path\]
208 if {[lsearch [::vfs::filesystem info] $to] < 0} {
211 set path [lindex [::vfs::filesystem info $to] end]
218 ::vfs::filesystem unmount $to
235 if $error {::vfs::filesystem posixerro
[all...]
H A Dglobfind.tcl26 filesystem hierarchy will be searched. A value of zero is interpreted
H A Dcollatevfs.tcl10 A collate/broadcast/collect/catchup virtual filesystem. Requires the template vfs in templatevfs.tcl.
282 vfs::filesystem posixerror $::vfs::posix(ENOENT) ; return -code error $::vfs::posix(ENOENT)
291 vfs::filesystem posixerror $::vfs::posix(EROFS) ; return -code error $::vfs::posix(EROFS)
309 if {$returnValue == {}} {vfs::filesystem posixerror $::vfs::posix(EROFS) ; return -code error $::vfs::posix(EROFS)}
H A Dfishvfs.tcl8 A "FIles transferred over SHell" virtual filesystem
27 <remote directory> \ # an existing directory on the remote filesystem
/macosx-10.10/emacs-93/emacs/lisp/
H A Ddos-w32.el99 of `untranslated-filesystem-list' and `file-name-buffer-file-type-alist',
102 If it matches in `untranslated-filesystem-list':
124 `untranslated-filesystem-list' and `file-name-buffer-file-type-alist'.
210 (defvar untranslated-filesystem-list nil
212 and writing files. Each filesystem in the list is a string naming
213 the directory prefix corresponding to the filesystem.")
239 "Return t if FILENAME is on a filesystem that does not require
242 (ufs-list untranslated-filesystem-list)
250 (defun add-untranslated-filesystem (filesystem)
[all...]
/macosx-10.10/DiskArbitration-268/DiskArbitration/
H A DDiskArbitrationPrivate.h183 char * filesystem,
196 char * filesystem );
H A DDiskArbitrationPrivate.c663 char * filesystem = NULL; local
672 filesystem = __DiskArbCopyDiskDescriptionVolumeKind( disk );
741 ( callback )( __DiskArbGetDiskID( disk ), flags, mountpoint, content, path, sequence, time, filesystem, name ); local
774 if ( filesystem ) free( filesystem );
1160 char * filesystem = NULL; local
1169 filesystem = __DiskArbCopyDiskDescriptionVolumeKind( disk );
1196 ( callback )( __DiskArbGetDiskID( disk ), name, content, path, flags, writable, removable, whole, filesystem ); local
1256 if ( filesystem ) free( filesystem );
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dtree.rb27 which allows the user to browse a hierarchical data-set such as a filesystem. \
31 found in your filesystem). \
/macosx-10.10/CPANInternal-159.1/File-ExtAttr-1.09/lib/File/
H A DExtAttr.pm63 Extended attributes may also not be supported by your filesystem
64 or require special options to be enabled for a particular filesystem.
402 NetBSD >= 4.0 to get UFS filesystem support for them.
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dmagic.tab1393 32769 string CD001 ISO 9660 CD-ROM filesystem image data/x-filesystem
1396 37633 string CD001 ISO 9660 CD-ROM filesystem image, raw 2352 byte sectors data/x-filesystem
1397 32776 string CDROM High Sierra CD-ROM filesystem image data/x-filesystem
/macosx-10.10/ruby-106/ruby/lib/webrick/httpservlet/
H A Dfilehandler.rb261 # normalize before accessing to the filesystem.
263 # dirty hack for filesystem encoding; in nature, File.expand_path
265 path = req.path_info.dup.force_encoding(Encoding.find("filesystem"))
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dsyspolicy.sql100 -- A table to carry (potentially large-ish) filesystem data stored as a bookmark blob.
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dsyspolicy.sql100 -- A table to carry (potentially large-ish) filesystem data stored as a bookmark blob.
/macosx-10.10/WebCore-7600.1.25/WebCore.vcxproj/
H A DcopyForwardingHeaders.cmd19 xcopy /y /d "%ProjectDir%..\Modules\filesystem\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"

Completed in 330 milliseconds

12