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

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIODeviceTreeSupport.cpp93 OSData * prop; local
183 if( (prop = (OSData *) parent->getProperty( gIODTCompatibleKey))) {
185 parent->setName( (const char *) prop->getBytesNoCopy() );
224 if( (0 == (prop = (OSData *)child->getProperty( gIODTTypeKey )))
225 || (strncmp("display", (char *)prop->getBytesNoCopy(), sizeof("display"))) ) {
330 void *prop; local
350 if( kSuccess != DTGetProperty( dtEntry, name, &prop, &propSize ))
355 data = OSData::withBytes(prop, propSize);
358 data = OSData::withBytesNoCopy(prop, propSize);
368 sym = OSSymbol::withCString( (const char *) prop);
773 OSObject *prop; local
915 OSData *prop; local
955 OSData *prop; local
1125 OSData *prop; local
[all...]
H A DIONVRAM.cpp1296 NVRAMProperty *prop; local
1309 prop = (NVRAMProperty *)(_nrImage + offset);
1311 length = prop->nameLength;
1313 strncpy(nameBuf, (const char *)prop->name, length);
1317 length = prop->dataLength;
1319 *value = OSData::withBytes(prop->data, length);
1333 NVRAMProperty *prop; local
1355 prop = (NVRAMProperty *)(_nrImage + offset);
1356 if (!exists) bcopy(&hdr, &prop->header, sizeof(hdr));
1358 prop
[all...]
H A DIOPlatformExpert.cpp1079 OSData * prop; local
1087 prop = (OSData *) getProvider()->getProperty( gIODTCompatibleKey );
1088 if( prop ) {
1089 str = (const char *) prop->getBytesNoCopy();
1112 OSData * prop; local
1116 prop = (OSData *) getProvider()->getProperty( gIODTModelKey );
1117 ok = (0 != prop);
1120 strlcpy( name, (const char *) prop->getBytesNoCopy(), maxLength );
H A DIOPMrootDomain.cpp2928 OSObject * prop; local
2934 prop = from->copyProperty( gPMHaltClientAcknowledgeKey );
2935 if (prop)
2937 worker = (PMHaltWorker *) prop;
H A DIORegistryEntry.cpp259 OSString * prop; local
286 if( (prop = OSDynamicCast( OSString, getProperty( gIONameKey)))) {
287 OSSymbol * sym = (OSSymbol *)OSSymbol::withString( prop);
H A DIOService.cpp3799 OSObject * prop; local
3805 prop = table->getObject( gIOResourceMatchKey );
3806 str = OSDynamicCast( OSString, prop );
3810 else if( (set = OSDynamicCast( OSSet, prop))) {
/macosx-10.5.8/xnu-1228.15.4/pexpert/gen/
H A Ddevice_tree.c85 DeviceTreeNodeProperty *prop; local
91 prop = (DeviceTreeNodeProperty *) (entry + 1);
93 prop = next_prop(prop);
96 return ((RealDTEntry) prop);
404 DeviceTreeNodeProperty *prop; local
410 prop = (DeviceTreeNodeProperty *) (entry + 1);
412 if (strcmp(prop->name, propertyName) == 0) {
413 *propertyValue = (void *) (((int)prop)
415 *propertySize = prop
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_sig.c1521 int prop; local
1536 prop = sigprop[signum];
1651 if (sig_proc->p_nice > NZERO && action == SIG_DFL && (prop & SA_KILL) &&
1655 if (prop & SA_CONT)
1658 if (prop & SA_STOP) {
1668 if (prop & SA_TTYSTOP && pg->pg_jobc == 0 &&
1692 if ((action == KERN_SIG_HOLD) && ((prop & SA_CONT) == 0 || sig_proc->p_stat != SSTOP)) {
1727 if (prop & SA_CONT) {
1745 if (prop & SA_CONT) {
1789 if (!(prop
1996 int signum, mask, prop, sigbits; local
2297 int signum, mask, prop, sigbits; local
2796 hassigprop(int sig, int prop) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/netkey/
H A Dkey_debug.c170 struct sadb_prop *prop = (struct sadb_prop *)ext; local
178 len = (PFKEY_UNUNIT64(prop->sadb_prop_len) - sizeof(*prop))
180 comb = (struct sadb_comb *)(prop + 1);
181 printf("sadb_prop{ replay=%u\n", prop->sadb_prop_replay);
H A Dkey.c6449 struct sadb_prop *prop; local
6480 prop = mtod(m, struct sadb_prop *);
6481 bzero(prop, sizeof(*prop));
6482 prop->sadb_prop_len = PFKEY_UNIT64(totlen);
6483 prop->sadb_prop_exttype = SADB_EXT_PROPOSAL;
6484 prop->sadb_prop_replay = 32; /* XXX */
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dsignalvar.h206 int hassigprop(int sig, int prop);

Completed in 201 milliseconds