Searched refs:location (Results 1 - 12 of 12) sorted by relevance

/darwin-on-arm/xnu/iokit/Kernel/
H A DIOMemoryCursor.cpp131 while ((seg.location) || (fromPosition < inDescriptorLength))
133 if (!seg.location)
135 seg.location = inDescriptor->getPhysicalSegment(
137 assert(seg.location);
142 if (!curSeg.location)
146 seg.location = 0;
148 else if ((curSeg.location + curSeg.length == seg.location))
152 seg.location = 0;
155 if (!seg.location)
[all...]
H A DIODeviceTreeSupport.cpp334 char location[ 32 ]; local
377 if( propSize >= (int) sizeof(location))
378 propSize = sizeof(location) - 1;
379 strncpy( location, (const char *) prop, propSize );
380 location[ propSize ] = 0;
381 regEntry->setLocation( location );
386 // default location - override later
387 snprintf(location, sizeof(location), "%X", *((uint32_t *) prop));
388 regEntry->setLocation( location );
[all...]
H A DIOPMPowerSource.cpp391 int IOPMPowerSource::location(void) { function in class:IOPMPowerSource
H A DIORegistryEntry.cpp713 /* Name, location, paths */
809 void IORegistryEntry::setLocation( const OSSymbol * location, argument
814 if( location) {
821 registryTable()->setObject( key, (OSObject *) location);
826 void IORegistryEntry::setLocation( const char * location, argument
829 OSSymbol * sym = (OSSymbol *)OSSymbol::withCString( location );
H A DIOUserClient.cpp2132 io_name_t location )
2145 strncpy( location, cstr, sizeof( io_name_t));
/darwin-on-arm/xnu/iokit/IOKit/pwr_mgt/
H A DIOPMPowerSource.h128 * Clue about battery's location in machine - Left vs. Right
251 int location(void);
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOMemoryCursor.h66 IOPhysicalAddress location; member in struct:IOMemoryCursor::PhysicalSegment
139 @param fromPosition Starting location of the I/O within a memory descriptor.
212 @param fromPosition Starting location of the I/O within a memory descriptor.
288 @param fromPosition Starting location of the I/O within a memory descriptor.
362 @param fromPosition Starting location of the I/O within a memory descriptor.
H A DIORegistryEntry.h627 /* Name, location and path accessors */
683 @abstract Returns the location string assigned to the registry entry as a C-string.
684 @discussion Entries can given a location string in a particular plane, or globally. If the entry has had a location set in a plane and the plane is specified that location string will be returned, otherwise the global location string is returned. If no global location string has been set, zero is returned.
686 @result A C-string location string, valid while the entry is retained, or zero. */
691 @abstract Returns the location string assigned to the registry entry as an OSSymbol.
692 @discussion Entries can given a location strin
[all...]
/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf.c343 errno_t mbuf_pulldown(mbuf_t src, size_t *offset, size_t len, mbuf_t *location) argument
345 /* Must set *location to NULL in failure case */
347 *location = m_pulldown(src, *offset, len, &new_offset);
350 return (*location == NULL) ? ENOMEM : 0;
/darwin-on-arm/xnu/bsd/sys/
H A Dkpi_mbuf.h314 the data value must point to a location in the cluster and the data
329 mbuf_align_32 will set the data pointer to a location aligned on
334 data location.
707 modified. Upon return, location will be the mbuf the data is
715 location.
717 @param location Upon success, *location will be the mbuf the data is
722 mbuf_t *location);
775 @param out_data A pointer to the location where the data will be
/darwin-on-arm/xnu/osfmk/device/
H A Ddevice.defs510 out location : io_name_t
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_readwrite.c1734 u_int32_t location; local
1748 location = *(u_int32_t *)ap->a_data;
1749 if ((location >= hfsmp->allocLimit) &&
1750 (location != HFS_NO_UPDATE_NEXT_ALLOCATION)) {
1756 if (location == HFS_NO_UPDATE_NEXT_ALLOCATION) {
1757 /* On magic value for location, set nextAllocation to next block
1767 HFS_UPDATE_NEXT_ALLOCATION(hfsmp, location);
4339 * Relocate a file to a new location on disk

Completed in 209 milliseconds