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

/xnu-2422.115.4/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) {
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.cpp2164 io_name_t location )
2177 strncpy( location, cstr, sizeof( io_name_t));
/xnu-2422.115.4/iokit/IOKit/pwr_mgt/
H A DIOPMPowerSource.h129 * Clue about battery's location in machine - Left vs. Right
253 int location(void);
/xnu-2422.115.4/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...]
/xnu-2422.115.4/bsd/kern/
H A Dkpi_mbuf.c345 errno_t mbuf_pulldown(mbuf_t src, size_t *offset, size_t len, mbuf_t *location) argument
347 /* Must set *location to NULL in failure case */
349 *location = m_pulldown(src, *offset, len, &new_offset);
352 return (*location == NULL) ? ENOMEM : 0;
/xnu-2422.115.4/bsd/sys/
H A Dkpi_mbuf.h315 the data value must point to a location in the cluster and the data
330 mbuf_align_32 will set the data pointer to a location aligned on
335 data location.
708 modified. Upon return, location will be the mbuf the data is
716 location.
718 @param location Upon success, *location will be the mbuf the data is
723 mbuf_t *location);
776 @param out_data A pointer to the location where the data will be
1613 @param area A pointer to a location t
[all...]
/xnu-2422.115.4/osfmk/device/
H A Ddevice.defs514 out location : io_name_t
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_readwrite.c2027 u_int32_t location; local
2041 location = *(u_int32_t *)ap->a_data;
2042 if ((location >= hfsmp->allocLimit) &&
2043 (location != HFS_NO_UPDATE_NEXT_ALLOCATION)) {
2049 if (location == HFS_NO_UPDATE_NEXT_ALLOCATION) {
2050 /* On magic value for location, set nextAllocation to next block
2060 HFS_UPDATE_NEXT_ALLOCATION(hfsmp, location);
4820 * Relocate a file to a new location on disk

Completed in 175 milliseconds