Searched refs:errorString (Results 1 - 6 of 6) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSUnserialize.h41 @param errorString if this is a valid pointer and the XML parser finds a error in buffer, errorString contains text indicating the line number and type of error encountered.
44 extern OSObject* OSUnserializeXML(const char *buffer, OSString **errorString = 0);
47 extern OSObject* OSUnserialize(const char *buffer, OSString **errorString = 0);
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOStartIOKit.cpp97 OSString * errorString = NULL; // must release local
124 OSUnserialize(gIOKernelKmods, &errorString));
127 if (errorString) {
129 errorString->getCStringNoCopy());
130 errorString->release();
H A DIOCatalogue.cpp842 OSString * errorString; local
847 array = OSDynamicCast(OSArray, OSUnserialize(gIOKernelConfigTables, &errorString));
848 if (!array && errorString) {
850 errorString->getCStringNoCopy());
851 errorString->release();
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dcatalogue.cpp694 OSString * errorString = NULL; local
746 OSUnserializeXML(dataBuffer->plistAddr, &errorString));
751 if (errorString) {
753 errorString->getCStringNoCopy());
831 if (errorString) {
832 errorString->release();
964 OSString * errorString = NULL; // must release local
1088 if (errorString) {
1089 errorString->release();
1090 errorString
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSUnserializeXML.y95 OSString **errorString; // parse error with line
262 if (state->errorString) {
264 *(state->errorString) = OSString::withCString(tempString);
1060 OSUnserializeXML(const char *buffer, OSString **errorString)
1068 if (errorString) *errorString = NULL;
1076 state->errorString = errorString;
H A DOSUnserializeXML.cpp190 OSString **errorString; // parse error with line member in struct:parser_state
1874 if (state->errorString) {
1876 *(state->errorString) = OSString::withCString(tempString);
2672 OSUnserializeXML(const char *buffer, OSString **errorString)
2680 if (errorString) *errorString = NULL;
2688 state->errorString = errorString;

Completed in 52 milliseconds