Searched refs:prop (Results 1 - 13 of 13) sorted by relevance

/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DAppleARMPE.cpp58 OSData * prop; local
61 prop = (OSData *) getProvider()->getProperty( gIODTModelKey );
62 ok = (0 != prop);
65 populate_model_name((char *) prop->getBytesNoCopy());
89 OSData * prop; local
93 prop = (OSData *) getProvider()->getProperty( gIODTModelKey );
94 ok = (0 != prop);
97 strlcpy( name, (const char *) prop->getBytesNoCopy(), maxLength );
/darwin-on-arm/xnu/pexpert/gen/
H A Ddevice_tree.c85 DeviceTreeNodeProperty *prop; local
91 prop = (DeviceTreeNodeProperty *) (entry + 1);
93 prop = next_prop(prop);
96 return ((RealDTEntry) prop);
411 DeviceTreeNodeProperty *prop; local
417 prop = (DeviceTreeNodeProperty *) (entry + 1);
419 if (strcmp(prop->name, propertyName) == 0) {
420 *propertyValue = (void *) (((uintptr_t)prop)
422 *propertySize = prop
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIODeviceTreeSupport.cpp95 OSData * prop; local
184 if( (prop = (OSData *) parent->getProperty( gIODTCompatibleKey))) {
186 parent->setName( (const char *) prop->getBytesNoCopy() );
331 void *prop; local
351 if( kSuccess != DTGetProperty( dtEntry, name, &prop, &propSize ))
356 data = OSData::withBytes(prop, propSize);
359 data = OSData::withBytesNoCopy(prop, propSize);
369 sym = OSSymbol::withCString( (const char *) prop);
371 sym = OSSymbol::withCStringNoCopy( (const char *) prop);
379 strncpy( location, (const char *) prop, propSiz
774 OSObject *prop; local
915 OSData *prop; local
956 OSData *prop; local
1164 OSData *prop; local
[all...]
H A DIONVRAM.cpp1314 NVRAMProperty *prop; local
1327 prop = (NVRAMProperty *)(_nrImage + offset);
1329 length = prop->nameLength;
1331 strncpy(nameBuf, (const char *)prop->name, length);
1335 length = prop->dataLength;
1337 *value = OSData::withBytes(prop->data, length);
1351 NVRAMProperty *prop; local
1373 prop = (NVRAMProperty *)(_nrImage + offset);
1374 if (!exists) bcopy(&hdr, &prop->header, sizeof(hdr));
1376 prop
[all...]
H A DIOPlatformExpert.cpp1186 OSData * prop; local
1194 prop = (OSData *) getProvider()->getProperty( gIODTCompatibleKey );
1195 if( prop ) {
1196 str = (const char *) prop->getBytesNoCopy();
1219 OSData * prop; local
1223 prop = (OSData *) getProvider()->getProperty( gIODTModelKey );
1224 ok = (0 != prop);
1227 strlcpy( name, (const char *) prop->getBytesNoCopy(), maxLength );
H A DIOHibernateIO.cpp1737 DeviceTreeNodeProperty * prop; local
1743 prop = (DeviceTreeNodeProperty *) (entry + 1);
1746 if (regEntry && (0 != strcmp("name", prop->name)))
1748 regEntry->setProperty((const char *) prop->name, (void *) (prop + 1), prop->length);
1749 // HIBPRINT("%s: %s, %d\n", regEntry->getName(), prop->name, prop->length);
1751 prop = (DeviceTreeNodeProperty *) (((uintptr_t)(prop
[all...]
H A DIOPMrootDomain.cpp3690 OSObject * prop = 0; local
3704 prop = getServiceRoot()->copyProperty(kIOPlatformSystemSleepPolicyKey);
3705 if (!prop) goto done;
3850 policyData = OSDynamicCast(OSData, prop);
3924 if (prop)
3925 prop->release();
4710 OSObject * prop = copyProperty(kIOPMRootDomainWakeTypeKey); local
4711 if (prop)
4713 OSString * wakeType = OSDynamicCast(OSString, prop);
4724 prop
7069 OSObject * prop; local
[all...]
H A DIOService.cpp4330 OSObject * prop; local
4336 prop = table->getObject( gIOResourceMatchKey );
4337 str = OSDynamicCast( OSString, prop );
4341 else if( (set = OSDynamicCast( OSSet, prop))) {
4735 OSObject * prop; \
4737 prop = copyProperty(key); \
4738 match = obj->isEqualTo(prop); \
4739 if (prop) prop->release(); \
H A DIORegistryEntry.cpp270 OSString * prop; local
309 if( (prop = OSDynamicCast( OSString, getProperty( gIONameKey)))) {
310 OSSymbol * sym = (OSSymbol *)OSSymbol::withString( prop);
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_sig.c1712 int prop; local
1727 prop = sigprop[signum];
1843 if (sig_proc->p_nice > NZERO && action == SIG_DFL && (prop & SA_KILL) &&
1847 if (prop & SA_CONT)
1850 if (prop & SA_STOP) {
1860 if (prop & SA_TTYSTOP && pg->pg_jobc == 0 &&
1884 if ((action == KERN_SIG_HOLD) && ((prop & SA_CONT) == 0 || sig_proc->p_stat != SSTOP)) {
1933 if (prop & SA_CONT) {
1951 if (prop & SA_CONT) {
1995 if (!(prop
2210 int signum, mask, prop, sigbits; local
2511 int signum, mask, prop, sigbits; local
3069 hassigprop(int sig, int prop) argument
[all...]
/darwin-on-arm/xnu/bsd/netkey/
H A Dkey_debug.c176 struct sadb_prop *prop = (struct sadb_prop *)ext; local
184 len = (PFKEY_UNUNIT64(prop->sadb_prop_len) - sizeof(*prop))
186 comb = (struct sadb_comb *)(prop + 1);
187 printf("sadb_prop{ replay=%u\n", prop->sadb_prop_replay);
H A Dkey.c7141 struct sadb_prop *prop; local
7172 prop = mtod(m, struct sadb_prop *);
7173 bzero(prop, sizeof(*prop));
7174 prop->sadb_prop_len = PFKEY_UNIT64(totlen);
7175 prop->sadb_prop_exttype = SADB_EXT_PROPOSAL;
7176 prop->sadb_prop_replay = 32; /* XXX */
/darwin-on-arm/xnu/bsd/sys/
H A Dsignalvar.h205 int hassigprop(int sig, int prop);

Completed in 130 milliseconds