Searched refs:storage (Results 176 - 200 of 406) sorted by relevance

1234567891011>>

/macosx-10.9.5/bless-98/libbless/Misc/
H A DBLCreateBooterInformationDictionary.c49 #include <IOKit/storage/IOMedia.h>
50 #include <IOKit/storage/IOPartitionScheme.h>
52 #include <IOKit/storage/IOApplePartitionScheme.h>
54 #include <IOKit/storage/IOGUIDPartitionScheme.h>
55 #include <IOKit/storage/IOStorageProtocolCharacteristics.h>
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dargp-parse.c263 /* An vector containing storage for the CHILD_INPUTS field in all groups. */
276 void *storage;
472 char *storage;
486 /* Lengths of the various bits of storage used by PARSER. */
502 parser->storage = malloc (ssum);
503 if (! parser->storage)
506 storage = parser->storage;
507 parser->groups = parser->storage;
508 parser->child_inputs = (void **) (storage
271 void *storage; member in struct:parser
465 char *storage; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/
H A DDBI.pm35 DBI-based storage backends, and implements the common functionality between them.
77 || $self->schema->storage->sql_maker->quote_char
92 || $self->schema->storage->sql_maker->name_sep
243 $self->schema->storage->disconnect unless $self->dynamic;
249 my $sth = $self->dbh->prepare($self->schema->storage->sql_maker
480 my $dbh = $self->schema->storage->dbh;
636 return $self->schema->storage->dbh;
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dtrie2test.c546 uint32_t storage[10000]; local
566 utrie2_serialize(trie, storage, sizeof(storage), &errorCode);
607 length2=utrie2_serialize(trie, storage, sizeof(storage), &errorCode);
636 swappedLength=utrie2_swap(ds, storage, -1, NULL, &errorCode);
644 swappedLength=utrie2_swap(ds, storage, length2, swapped, &errorCode);
653 uprv_memset(storage, 0xaa, length2);
664 swappedLength=utrie2_swap(ds, swapped, length2, storage, &errorCode);
673 trie=utrie2_openFromSerialized(valueBits, storage, length
[all...]
H A Dtrietest.c269 uint8_t* storage =NULL; local
271 storage = (uint8_t*) uprv_malloc(sizeof(uint8_t)*DEFAULT_STORAGE_SIZE);
318 length=utrie_serialize(newTrie, storage, DEFAULT_STORAGE_SIZE,
352 if(!utrie_unserialize(&trie, storage, length, &errorCode)) {
441 uprv_free(storage);
450 double bogus; /* needed for aligining the storage */
451 uint8_t storage[32768]; member in union:__anon1321
520 length=utrie_serialize(newTrie, storageHolder.storage, sizeof(storageHolder.storage),
529 if (length >= (int32_t)sizeof(storageHolder.storage)) {
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DRow.pm299 $rollback_guard ||= $source->storage->txn_scope_guard;
320 $rollback_guard ||= $source->storage->txn_scope_guard
327 my $updated_cols = $source->storage->insert($source, { $self->get_columns });
341 my $storage = $self->result_source->storage;
343 unless $storage->can('last_insert_id');
344 my @ids = $storage->last_insert_id($self->result_source,@auto_pri);
487 my $rows = $self->result_source->storage->update(
533 not being in storage. If you know for a fact that the object is still in
534 storage (
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/Replicated/
H A DPool.pm25 In a replicated storage type, there is at least one replicant to handle the
90 actual replicant storage. For example, if the $dsn element is something like:
96 $schema->storage->replicants->{'dbname=dbfile'}
102 =item set_replicant($key=>$storage)
248 ## Why this is necessary at all, is that we need to have the final storage
315 if( my $num_connected = $storage->has_connected_replicants ) {
376 This method requires that your underlying storage engine supports some sort of
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dsyms.c64 allocating storage, and the actual reading process. This is an
91 All storage for the symbols themselves is in an objalloc
785 long storage; local
790 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
792 storage = bfd_get_symtab_upper_bound (abfd);
793 if (storage < 0)
795 if (storage == 0)
798 syms = bfd_malloc (storage);
1390 string is in our own local storage anyhow. */
/macosx-10.9.5/IOFWDVComponents-207.4.1/
H A DDVIsochComponent.c30 #define CALLCOMPONENT_GLOBALS() IsochComponentInstancePtr storage
33 #define IDH_GLOBALS() IsochComponentInstancePtr storage
179 FWDVICodecComponentDispatch(ComponentParameters *params, char ** storage);
1878 FWDVComponentOpen(IsochComponentInstancePtr storage, ComponentInstance self) argument
1887 if( nil == (storage = (IsochComponentInstancePtr)NewPtrClear(sizeof(IsochComponentInstance))))
1890 RecordEventLogger( 'isoc', 'ope2', (int)storage, 0);
1893 SetComponentInstanceStorage(self, (Handle) storage);
1986 FWDVComponentVersion(IsochComponentInstancePtr storage) argument
1993 FWDVComponentRegister(IsochComponentInstancePtr storage) argument
2002 FWDVIDHGetDeviceList(IsochComponentInstancePtr storage, argument
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/DBI/ODBC/
H A DACCESS.pm34 $self->schema->storage->dbh->get_info(16);
79 my ($dsn, $user, $pass) = @{ $self->schema->storage->_dbi_connect_info };
87 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSInjectedScriptHostCustom.cpp282 Storage* storage = toStorage(exec->argument(0));
283 if (storage)
284 return jsStringWithCache(exec, impl()->storageIdImpl(storage));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/
H A DTestCookieManager.cpp69 void setPersistentStorage(WebKitCookiePersistentStorage storage) argument
72 switch (storage) {
86 webkit_cookie_manager_set_persistent_storage(m_cookieManager, filename, storage);
250 // Text storage using a new file.
264 // SQLite storage using a new file.
277 // Text storage using an existing file.
285 // SQLite storage with an existing file.
324 CookieManagerTest::add("WebKitCookieManager", "persistent-storage", testCookieManagerPersistentStorage);
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/tests/
H A Dtbasic1.cpp189 B(b14, Empty view outlives temp storage, 0) { argument
196 B(b15, View outlives temp storage, 0) { argument
213 B(b16, View outlives cleared temp storage, 0) { argument
/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAID.h72 #include <IOKit/storage/IOMedia.h>
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/
H A Dmysql.pm96 C<$storage> object into this class.
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/cdbi/testlib/DBIC/Test/
H A DSQLite.pm50 __PACKAGE__->storage->dbh->do("PRAGMA synchronous = OFF");
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/DBI/
H A DPg.pm32 $self->schema->storage->sql_maker->quote_char('"');
33 $self->schema->storage->sql_maker->name_sep('.');
217 my ($precision) = $self->schema->storage->dbh
282 my ($typetype) = $self->schema->storage->dbh
H A Dmysql.pm30 $self->schema->storage->sql_maker->quote_char("`");
31 $self->schema->storage->sql_maker->name_sep(".");
334 ($comment) = try { $self->schema->storage->dbh->selectrow_array(
359 ($comment) = try { $self->schema->storage->dbh->selectrow_array(
/macosx-10.9.5/IOStorageFamily-172/
H A DIOFDiskPartitionScheme.h112 #include <IOKit/storage/IOPartitionScheme.h>
H A DIOGUIDPartitionScheme.h101 #include <IOKit/storage/IOPartitionScheme.h>
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DAudioBus.h66 // allocate indicates whether or not to initially have the AudioChannels created with managed storage.
67 // Normal usage is to pass true here, in which case the AudioChannels will memory-manage their own storage.
72 void setChannelMemory(unsigned channelIndex, float* storage, size_t length);
134 // The caller is responsible for setting up lastMixGain to point to storage which is unique for every "stream" which will be applied to this bus.
/macosx-10.9.5/bless-98/libbless/BootRoot/
H A DBLBootRootIdentifyDevice.c34 #include <IOKit/storage/IOMedia.h>
/macosx-10.9.5/cddafs-252/
H A DAppleCDDAFileSystemUtilities.cpp42 #include <IOKit/storage/IOCDMedia.h>
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/
H A DPyStorage.cpp25 " s = mk.storage('demo.dat', 1)\n"
63 // A "storage in a storage" strategy class for MetaKit
130 "autocommit() -- turn on autocommit (i.e. commit when storage object is deleted)";
143 "contents() -- return view with one row, representing entire storage (internal use)";
154 "description(name='') -- return a description of named view, or of entire storage";
215 Fail(PyExc_TypeError, "First arg must be a storage");
216 c4_Storage &storage = *(PyStorage*)(PyObject*)args[0]; local
217 if (!o->SetAside(storage))
227 "view(viewname) -- return top-level view in storage, give
380 c4_Storage &storage = *(PyStorage*)(PyObject*)args[0]; local
[all...]
H A Dmetakit.py9 After that, things like metakit.storage(...) are available,
69 db = storage()

Completed in 528 milliseconds

1234567891011>>