Searched refs:storage (Results 76 - 100 of 406) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_cookie_manager.h64 * @brief Enum values to denote cookies persistent storage type.
99 * Set the @a filename where non-session cookies are stored persistently using @a storage as the format to read/write the cookies.
109 * @param storage the type of storage.
111 EAPI void ewk_cookie_manager_persistent_storage_set(Ewk_Cookie_Manager *manager, const char *filename, Ewk_Cookie_Persistent_Storage storage);
/macosx-10.9.5/emacs-92/emacs/lisp/url/
H A Durl-cookie.el88 (defvar url-cookie-storage nil "Where cookies are stored.")
89 (defvar url-cookie-secure-storage nil "Where secure cookies are stored.")
123 (var (if secure 'url-cookie-secure-storage 'url-cookie-storage))
166 "(setq url-cookie-storage\n '")
167 (pp url-cookie-storage (current-buffer))
168 (insert ")\n(setq url-cookie-secure-storage\n '")
169 (pp url-cookie-secure-storage (current-buffer))
183 (let* ((storage (if secure url-cookie-secure-storage ur
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Ddemo.py16 db = mk.storage("demo.db",1)
H A Dselfref.py20 db = metakit.storage('_selfref.mk',1)
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pop3d/
H A Dpop3d.tcl14 package require mime ; # tcllib | storage callback
18 # Data storage in the pop3d module
37 # storCmd - storage callback
48 # storage - storage ref for that user
51 # msg - number of messages in storage
304 -storage {
315 Expected \"-state\", \"-port\", \"-auth\", \"-socket\", or \"-storage\""
354 -storage $storCmd \
365 -storage {se
[all...]
H A Dpop3d_udb.tcl14 # Data storage in the pop3d::udb module
112 # data storage.
127 proc ::pop3d::udb::_add {name usrName password storage} {
129 # @c password and a storage reference. The latter is stored and passed
134 # @a storage: symbolic reference to the maildrop of user <a usrName>.
135 # @a storage: Usable for a storage system only.
139 if {$storage == {}} {return -code error "storage location not defined"}
143 set user($usrName) [list $password $storage]
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/
H A DODBC.pm19 Code stolen from the L<DBIx::Class> ODBC storage.
30 # stolen from DBIC ODBC storage
31 my $dbh = $self->schema->storage->dbh;
H A DSybase.pm43 my $dbh = $self->schema->storage->dbh;
58 my $dbh = $self->schema->storage->dbh;
72 my $dbh = $self->schema->storage->dbh;
90 my $dbh = $self->schema->storage->dbh;
113 my $dbh = $self->schema->storage->dbh;
143 my $dbh = $self->schema->storage->dbh;
202 my $dbh = $self->schema->storage->dbh;
238 my $dbh = $self->schema->storage->dbh;
295 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DODBC.pm19 Code stolen from the L<DBIx::Class> ODBC storage.
30 # stolen from DBIC ODBC storage
31 my $dbh = $self->schema->storage->dbh;
H A DSybase.pm43 my $dbh = $self->schema->storage->dbh;
58 my $dbh = $self->schema->storage->dbh;
72 my $dbh = $self->schema->storage->dbh;
90 my $dbh = $self->schema->storage->dbh;
113 my $dbh = $self->schema->storage->dbh;
143 my $dbh = $self->schema->storage->dbh;
202 my $dbh = $self->schema->storage->dbh;
238 my $dbh = $self->schema->storage->dbh;
295 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/DBI/Sybase/
H A DCommon.pm30 $self->schema->storage->sql_maker->quote_char([qw/[ ]/]);
31 $self->schema->storage->sql_maker->name_sep('.');
/macosx-10.9.5/CPANInternal-140/Data-UUID-1.218/
H A DMakefile.PL61 GetOptions(\%opt, 's|state-storage-directory:s', 'd|default-umask:s',
75 print "\tUUID state storage: $d\n";
107 --state-storage-directory directory for storing library state information
108 --default-umask umask for files in the state storage directory
118 =item --state-storage-directory
128 storage directory. Default is 0007. This is ignored on Windows.
143 with the options L</"--state-storage-directory"> and L</"--default-umask">.
/macosx-10.9.5/IOBDStorageFamily-14/
H A DIOBDMedia.h83 #include <IOKit/storage/IOBDBlockStorageDriver.h>
84 #include <IOKit/storage/IOMedia.h>
/macosx-10.9.5/IODVDStorageFamily-35/
H A DIODVDBlockStorageDevice.h33 #include <IOKit/storage/IODVDTypes.h>
52 #include <IOKit/storage/IOCDBlockStorageDevice.h>
61 * The IODVDBlockStorageDevice class is a generic DVD block storage device
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInjectedScriptHost.cpp159 String InjectedScriptHost::storageIdImpl(Storage* storage) argument
162 return m_domStorageAgent->storageId(storage);
H A DInjectedScriptHost.idl53 [Custom] DOMString storageId(any storage);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSObject.cpp267 // NB. The fact that we're directly consulting our indexed storage implies that it is not
311 ArrayStorage* storage = thisObject->m_butterfly->arrayStorage(); local
312 if (i >= storage->length())
315 if (i < storage->vectorLength()) {
316 JSValue value = storage->m_vector[i].get();
321 } else if (SparseArrayValueMap* map = storage->m_sparseMap.get()) {
348 // valid indices will never look in the named property storage.
486 ArrayStorage* storage = thisObject->m_butterfly->arrayStorage(); local
488 if (propertyName >= storage->vectorLength())
491 WriteBarrier<Unknown>& valueSlot = storage
508 ArrayStorage* storage = thisObject->m_butterfly->arrayStorage(); local
540 enterDictionaryIndexingModeWhenArrayStorageAlreadyExists(VM& vm, ArrayStorage* storage) argument
734 ArrayStorage* storage = constructConvertedArrayStorageWithoutCopyingElements(vm, neededLength); local
1305 ArrayStorage* storage = thisObject->m_butterfly->arrayStorage(); local
1504 ArrayStorage* storage = object->m_butterfly->arrayStorage(); local
1835 ArrayStorage* storage = current->arrayStorageOrNull(); local
1912 putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage) argument
2007 ArrayStorage* storage = createArrayStorage(vm, i + 1, getNewVectorLength(0, 0, i + 1)); local
2056 putDirectIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, unsigned attributes, PutDirectIndexMode mode, ArrayStorage* storage) argument
2155 ArrayStorage* storage = createArrayStorage(vm, i + 1, getNewVectorLength(0, 0, i + 1)); local
2433 ArrayStorage* storage = object->m_butterfly->arrayStorage(); local
[all...]
H A DJSActivation.h107 WriteBarrier<Unknown>* storage(); // captureCount() number of registers.
122 WriteBarrier<Unknown>* storage = this->storage(); local
125 new(&storage[i]) WriteBarrier<Unknown>;
179 inline WriteBarrier<Unknown>* JSActivation::storage() function in class:JSC::JSActivation
/macosx-10.9.5/IOStorageFamily-172/
H A DIOStorage.cpp26 #include <IOKit/storage/IOStorage.h>
41 #define storageAttributes( storage ) ( ( OSMemberFunctionCast( void *, storage, ( void ( IOStorage::* )( IOService *, UInt64, IOMemoryDescriptor *, IOStorageCompletion ) ) &IOStorage::read ) == _ZN9IOStorage4readEP9IOServiceyP18IOMemoryDescriptor19IOStorageCompletion ) && \
42 ( OSMemberFunctionCast( void *, storage, ( void ( IOStorage::* )( IOService *, UInt64, IOMemoryDescriptor *, IOStorageCompletion ) ) &IOStorage::write ) == _ZN9IOStorage5writeEP9IOServiceyP18IOMemoryDescriptor19IOStorageCompletion ) && \
43 ( OSMemberFunctionCast( void *, storage, ( void ( IOStorage::* )( IOService *, UInt64, IOMemoryDescriptor *, IOStorageAttributes *, IOStorageCompletion * ) ) &IOStorage::read ) != _ZN9IOStorage4readEP9IOServiceyP18IOMemoryDescriptorP19IOStorageAttributesP19IOStorageCompletion ) && \
44 ( OSMemberFunctionCast( void *, storage, ( void ( IOStorage::* )( IOService *, UInt64, IOMemoryDescriptor *, IOStorageAttributes *, IOStorageCompletion * ) ) &IOStorage::write ) != _ZN9IOStorage5writeEP9IOServiceyP18IOMemoryDescriptorP19IOStorageAttributesP19IOStorageCompletion ) )
184 // serves simply as a convenience to storage subclass developers.
198 // serves simply as a convenience to storage subclass developers.
212 // Ask the storage object for permission to access its contents; the method
228 // Read data from the storage objec
[all...]
/macosx-10.9.5/bc-21/bc/bc/
H A DMakefile.am4 bc_SOURCES = main.c bc.y scan.l execute.c load.c storage.c util.c global.c
35 fbcOBJ = main.o bc.o scan.o execute.o global.o load.o storage.o util.o
39 sbcOBJ = main.o sbc.o scan.o execute.o global.o load.o storage.o util.o
/macosx-10.9.5/vim-53/runtime/compiler/
H A Dsplint.vim35 "foo.c:1006:12: Clauses exit with var referencing local storage in one
36 " case, fresh storage in other case
37 " foo.c:1003:2: Fresh storage var allocated
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dnetsrc.c93 struct netsrc_req *nrq, storage; local
102 mbuf_copydata(m, 0, sizeof(storage), &storage);
103 nrq = &storage;
189 struct in6_addr *in6, storage; local
208 in6 = in6_selectsrc(dstsin6, NULL, NULL, &ro, NULL, &storage,
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CocoaRepl/
H A DReplController.rb119 storage = @scratchText.textStorage
121 when 0 then storage.rubyString
122 when 1 then storage.rubySubString(@scratchText.selectedRange)
123 when 2 then storage.rubySubString(@scratchText.rangeForCurrentLine)
124 when 3 then storage.rubySubString(@scratchText.rangeForCurrentBlock)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DGraphicsContextWin.cpp70 void* storage = 0; local
71 m_bitmap = CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &storage, 0, 0);
80 ASSERT(storage == m_pixelData.buffer());
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSPosix/
H A DPosixDaemon.c67 // name in persistent storage for next time. It should also inform the user of the name change.
77 // Allocate another chunk of cache storage
78 CacheEntity *storage = malloc(sizeof(CacheEntity) * RR_CACHE_SIZE); local
79 if (storage) mDNS_GrowCache(m, storage, RR_CACHE_SIZE);

Completed in 404 milliseconds

1234567891011>>