Searched refs:cstr (Results 1 – 5 of 5) sorted by relevance
| /xnu-11215/libkern/c++/ |
| H A D | OSObject.cpp | 266 char cstr[128]; in serialize() local 269 snprintf(cstr, sizeof(cstr), "%s is not serializable", getClassName(this)); in serialize() 272 str = OSString::withCStringNoCopy(cstr); in serialize()
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOPlatformExpert.cpp | 816 char * cstr; in printDictionaryKeys() 817 cstr = getCStringForObject(inDictionary->getObject("AAPL,clock-id")); in printDictionaryKeys() 818 if (cstr) { in printDictionaryKeys() 819 kprintf(" ===> AAPL,clock-id is %s\n", cstr ); in printDictionaryKeys()
|
| H A D | IOUserServer.cpp | 2759 OSBoundedPtr<const char> cstr; in copyInStringArray() local 2783 while ((len = (unsigned char)cstr[0])) { in copyInStringArray() 2784 cstr++; in copyInStringArray() 2785 if ((cstr + len) >= end) { in copyInStringArray() 2788 cstr += len; in copyInStringArray() 2804 OSBoundedPtr<const char> cstr; in stringArrayIndex() local 2812 while ((len = (unsigned char)cstr[0])) { in stringArrayIndex() 2813 cstr++; in stringArrayIndex() 2814 if ((cstr + len) >= end) { in stringArrayIndex() 2817 if ((len == llen) && !strncmp(cstr.discard_bounds(), look, len)) { in stringArrayIndex() [all …]
|
| H A D | IOUserClient.cpp | 2439 const char * cstr; in is_io_object_get_superclass() local 2463 cstr = super->getClassName(); in is_io_object_get_superclass() 2464 if (!cstr) { in is_io_object_get_superclass() 2467 strlcpy(class_name, cstr, sizeof(io_name_t)); in is_io_object_get_superclass() 2490 const char * cstr; in is_io_object_get_bundle_identifier() local 2514 cstr = identifier->getCStringNoCopy(); in is_io_object_get_bundle_identifier() 2515 if (!cstr) { in is_io_object_get_bundle_identifier() 3580 const char * cstr = entry->getLocation( plane ); in is_io_registry_entry_get_location_in_plane() local 3582 if (cstr) { in is_io_registry_entry_get_location_in_plane() 3583 strncpy( location, cstr, sizeof(io_name_t)); in is_io_registry_entry_get_location_in_plane()
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | memory.py | 3581 cstr = addressof(site.subtotals[site.subtotalscount]) 3582 return ("{:<50s}".format(str(Cast(cstr, 'char *'))), "")
|