Searched refs:storage (Results 1 - 25 of 406) sorted by path

1234567891011>>

/macosx-10.9.5/AppleFileSystemDriver-17/
H A DAppleFileSystemDriver.h28 #include <IOKit/storage/IOMedia.h>
/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAID.h72 #include <IOKit/storage/IOMedia.h>
H A DAppleRAIDUserLib.c38 #include <IOKit/storage/IOMedia.h>
/macosx-10.9.5/BootCache-106/
H A Dcontrol.c18 #include <IOKit/storage/CoreStorage/CoreStorageCryptoIDs.h>
36 #include <IOKit/storage/CoreStorage/CoreStorageUserLib.h>
37 #include <IOKit/storage/IOMedia.h>
H A Dkext.c201 #include <IOKit/storage/IOMediaBSDClient.h>
/macosx-10.9.5/CF-855.17/
H A DCFBinaryPList.c440 } storage; local
441 storage.high = CFSwapInt64HostToBig(s.high);
442 storage.low = CFSwapInt64HostToBig(s.low);
443 uint8_t *bytes = (uint8_t *)&storage;
H A DCFOldStylePList.c562 CRSetCrashLogMessage("CFPropertyList ran out of memory while attempting to allocate temporary storage.");
H A DCFStorage.c32 ??? Currently elementSize cannot be greater than storage->maxLeafCapacity, which is less than or equal to __CFStorageMaxLeafCapacity
83 /* Each node in the storage. isLeaf determines whether the node is a leaf node or a node inside the tree. If latter, number of children are determined by the number of non-NULL entries in child[]. (NULL entries are at the end.)
94 CFRange cachedRange; //the absolute range of this node, in "value" units. This is valid only if this node is referenced by storage->cacheNode, and used by the cache. In general this is not valid, and the offset needs to be passed down from the tree
142 /* Allocates the memory and initializes the capacity in a leaf. This locks not for mutations (mutations are not thread-safe in general), but for lazy allocation of storage during reading.
144 CF_INLINE void __CFStorageAllocLeafNodeMemory(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex cap, bool compact) { argument
147 if (cap > storage->maxLeafCapacity) cap = storage->maxLeafCapacity;
153 __CFSpinLock(&(storage->cacheReaderMemoryAllocationLock));
156 __CFAssignWithWriteBarrier((void **)&node->info.leaf.memory, _CFAllocatorReallocateGC(allocator, node->info.leaf.memory, cap, storage->nodeHint)); // This will free...
160 __CFSpinUnlock(&(storage
178 __CFStorageConvertByteToValue(ConstCFStorageRef storage, CFIndex byte) argument
185 __CFStorageConvertBytesToValueRange(ConstCFStorageRef storage, CFIndex offset, CFIndex length) argument
192 __CFStorageConvertValueToByte(ConstCFStorageRef storage, CFIndex value) argument
199 __CFStorageConvertValuesToByteRange(ConstCFStorageRef storage, CFIndex offset, CFIndex length) argument
222 __CFStorageReleaseNode(CFStorageRef storage, CFStorageNode *node) argument
231 __CFStorageReleaseNodeWithNullCheck(CFStorageRef storage, CFStorageNode *node) argument
235 __CFStorageDeallocateNode(CFStorageRef storage, CFStorageNode *node) argument
252 __CFStorageThawNodeDuringMutation(CFStorageRef storage, CFStorageNode *node) argument
283 __CFStorageSetCache(CFStorageRef storage, CFStorageNode *node, CFIndex locInBytes) argument
294 __CFStorageGetFromCache(CFStorageRef storage, CFIndex loc, CFRange * restrict validConsecutiveValueRange, bool requireUnfrozenNode) argument
306 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, cachedNode, cachedNode->numBytes, false); local
355 __CFStorageFindByte(CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex absoluteByteOffsetOfNode, CFStorageNode **resultNode, CFRange *validConsecutiveByteRange, bool requireUnfreezing) argument
359 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, node, node->numBytes, false); local
380 __CFStorageGetValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange, bool requireUnfreezing) argument
409 __CFStorageCreateNode(CFAllocatorRef allocator, CFStorageRef storage, bool isLeaf, CFIndex numBytes) argument
429 __CFStorageCopyNode(CFStorageRef storage, const CFStorageNode *node) argument
476 __CFStorageDeleteLeafFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
503 __CFStoragePopulateBranchChildrenAfterDeletion(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range, CFStorageNode *newChildren[3], bool childrenAreDefinitelyFrozen, bool compact) argument
548 __CFStorageDeleteBranchFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
580 __CFStorageDeleteFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
593 __CFStorageDeleteUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFRange range, bool compact, bool isRootNode) argument
642 __CFStorageInsertLeafFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
708 __CFStorageInsertBranchFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
755 __CFStorageInsertFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
768 __CFStorageInsertLeafUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
821 __CFStorageInsertBranchUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
876 __CFStorageInsertUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
887 __CFStorageInsert(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
896 __CFStorageDelete(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFRange range, bool compact) argument
908 __CFStorageGetCount(CFStorageRef storage) argument
966 __CFStorageGetCapacity(CFStorageRef storage) argument
970 __CFStorageGetValueSize(CFStorageRef storage) argument
975 CFStorageRef storage = (CFStorageRef)cf; local
985 __CFStorageEnumerateNodesInByteRangeWithBlock(CFStorageRef storage, CFStorageNode *node, CFIndex globalOffsetOfNode, CFRange range, CFIndex concurrencyToken, CFStorageApplierBlock applier) argument
991 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, node, node->numBytes, false); local
1043 _CFStorageFindNodeContainingByteRange(ConstCFStorageRef storage, const CFStorageNode *node, CFRange nodeRange, CFIndex globalOffsetOfNode, CFRange *outGlobalByteRangeOfResult) argument
1066 __CFStorageClearRootNode(CFStorageRef storage) argument
1088 CFStorageRef storage = (CFStorageRef)cf; local
1115 CFStorageRef storage; local
1159 const ConstCFStorageRef storage = mutStorage; //we expect this to never modify the storage, so use a const variable to help enforce that local
1211 CFStorageGetCount(CFStorageRef storage) argument
1218 CFStorageGetValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange) argument
1223 CFStorageGetConstValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange) argument
1232 CFStorageInsertValues(CFStorageRef storage, CFRange range) argument
1272 CFStorageDeleteValues(CFStorageRef storage, CFRange range) argument
1328 CFStorageGetValues(CFStorageRef storage, CFRange range, void *values) argument
1342 _CFStorageFastEnumeration(CFStorageRef storage, struct __objcFastEnumerationStateEquivalent *state, void *stackbuffer, unsigned long count) argument
1354 CFStorageApplyFunction(CFStorageRef storage, CFRange range, CFStorageApplierFunction applier, void *context) argument
1365 CFStorageApplyBlock(CFStorageRef storage, CFRange range, CFStorageEnumerationOptionFlags options, CFStorageApplierBlock applier) argument
1376 CFStorageReplaceValues(CFStorageRef storage, CFRange range, const void *values) argument
1392 __CFStorageApplyNodeBlockInterior(CFStorageRef storage, CFStorageNode *node, void (^block)(CFStorageRef storage, CFStorageNode *node)) argument
1402 __CFStorageApplyNodeBlock(CFStorageRef storage, void (^block)(CFStorageRef storage, CFStorageNode *node)) argument
1407 __CFStorageEstimateTotalAllocatedSize(CFStorageRef storage) argument
1421 __CFStorageSetAlwaysFrozen(CFStorageRef storage, bool alwaysFrozen) argument
1425 __CFStorageCheckNodeCachedLengthIntegrity(ConstCFStorageRef storage, const CFStorageNode *node) argument
1444 __CFStorageCheckNodeIntegrity(ConstCFStorageRef storage, const CFStorageNode *node) argument
1455 __CFStorageCheckIntegrity(CFStorageRef storage) argument
1474 _CFStorageSetWeak(CFStorageRef storage) argument
[all...]
H A DCFStorage.h47 storage was a single block.
71 @param value The current value from the storage.
100 Creates a new mutable storage with elements of the given size.
102 memory for the set and its storage for values. This
107 to be stored in the storage. If this value is zero or
117 @param storage The storage to which the values are to be inserted.
119 @param range The range of values within the storage to insert. The
120 range location must be at least zero and not exceed the count of the storage.
122 increased by the length of the range. Thus this creates a gap in the storage
[all...]
/macosx-10.9.5/CPANInternal-140/Class-Std-0.011/lib/Class/
H A DStd.pm631 # Create storage for object attributes...
944 garbage collected, the only storage that is reclaimed is the single
1479 used as an attribute storage within a Class::Std class
/macosx-10.9.5/CPANInternal-140/Class-Std/lib/Class/
H A DStd.pm630 # Create storage for object attributes...
943 garbage collected, the only storage that is reclaimed is the single
1478 used as an attribute storage within a Class::Std class
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/
H A DLoader.pm79 DBIx::Class::Schema::Loader currently supports only the DBI storage type. It
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/
H A DBase.pm87 This is the base class for the storage-specific C<DBIx::Class::Schema::*>
1344 my $name_sep = $self->schema->storage->sql_maker->name_sep;
1605 my $qt = $self->schema->storage->sql_maker->quote_char;
H A DDBI.pm22 DBI-based storage backends, and implements the common functionality between them.
39 my $dbh = $self->schema->storage->dbh;
64 my $dbh = $self->schema->storage->dbh;
66 || $self->schema->storage->sql_maker->quote_char
72 my $dbh = $self->schema->storage->dbh;
74 || $self->schema->storage->sql_maker->name_sep
90 my $dbh = $self->schema->storage->dbh;
146 local $self->schema->storage->dbh->{RaiseError} = 1;
147 local $self->schema->storage->dbh->{PrintError} = 0;
167 my $dbh = $self->schema->storage
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DDB2.pm38 my $dbh = $self->schema->storage->dbh;
47 my $dbh = $self->schema->storage->dbh;
78 my $dbh = $self->schema->storage->dbh;
116 my $dbh = $self->schema->storage->dbh;
H A DMSSQL.pm40 my $dbh = $self->schema->storage->dbh;
57 my $dbh = $self->schema->storage->dbh;
82 my $dbh = $self->schema->storage->dbh;
105 my $dbh = $self->schema->storage->dbh;
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 DOracle.pm41 my $dbh = $self->schema->storage->dbh;
61 my $dbh = $self->schema->storage->dbh;
82 my $dbh = $self->schema->storage->dbh;
135 my $dbh = $self->schema->storage->dbh;
H A DPg.pm50 my $dbh = $self->schema->storage->dbh;
104 my ($table_comment) = $self->schema->storage->dbh->selectrow_array(
117 my ($table_oid) = $self->schema->storage->dbh->selectrow_array(
124 return $self->schema->storage->dbh->selectrow_array('SELECT col_description(?,?)', undef, $table_oid,
146 my ($precision) = $self->schema->storage->dbh
158 my ($integer_datetimes) = $self->schema->storage->dbh
180 my ($precision) = $self->schema->storage->dbh
H A DSQLAnywhere.pm45 my $dbh = $self->schema->storage->dbh;
63 my $dbh = $self->schema->storage->dbh;
98 my $dbh = $self->schema->storage->dbh;
H A DSQLite.pm48 $schema->storage->disconnect if $schema->storage;
60 my $dbh = $self->schema->storage->dbh;
188 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;
H A Dmysql.pm39 my $dbh = $self->schema->storage->dbh;
79 my $dbh = $self->schema->storage->dbh;
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/Sybase/
H A DCommon.pm29 $self->schema->storage->sql_maker->quote_char([qw/[ ]/])
30 unless $self->schema->storage->sql_maker->quote_char;
32 $self->schema->storage->sql_maker->name_sep('.')
33 unless $self->schema->storage->sql_maker->name_sep;
38 my $dbh = $self->schema->storage->dbh;
H A DMicrosoft_SQL_Server.pm30 my $dbh = $self->schema->storage->dbh;

Completed in 313 milliseconds

1234567891011>>