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

/xnu-2422.115.4/libkern/libkern/c++/
H A DOSUnserialize.h56 * @param errorString If non-</code>NULL</code>, and the XML parser
58 * <code>*errorString</code> indicates the line number
69 OSString ** errorString = 0);
82 * @param errorString If non-</code>NULL</code>, and the XML parser
84 * <code>*errorString</code> indicates the line number
96 OSString ** errorString = 0);
99 extern OSObject* OSUnserialize(const char *buffer, OSString **errorString = 0);
/xnu-2422.115.4/libsa/
H A Dbootstrap.cpp221 OSString * errorString = NULL; // must release local
310 &errorString);
317 if (errorString && errorString->getCStringNoCopy()) {
318 errorCString = errorString->getCStringNoCopy();
451 OSSafeRelease(errorString);
852 OSString * errorString = NULL; // must release local
876 &errorString);
883 if (errorString && errorString
[all...]
/xnu-2422.115.4/libkern/c++/
H A DOSUnserializeXML.y97 OSString **errorString; // parse error with line
331 if (state->errorString) {
334 *(state->errorString) = OSString::withCString(tempString);
1179 OSUnserializeXML(const char *buffer, OSString **errorString)
1187 if (errorString) *errorString = NULL;
1195 state->errorString = errorString;
1211 OSUnserializeXML(const char *buffer, size_t bufferSize, OSString **errorString)
1218 return OSUnserializeXML(buffer, errorString);
[all...]
H A DOSUnserializeXML.cpp192 OSString **errorString; // parse error with line member in struct:parser_state
1943 if (state->errorString) {
1946 *(state->errorString) = OSString::withCString(tempString);
2791 OSUnserializeXML(const char *buffer, OSString **errorString)
2799 if (errorString) *errorString = NULL;
2807 state->errorString = errorString;
2823 OSUnserializeXML(const char *buffer, size_t bufferSize, OSString **errorString)
2830 return OSUnserializeXML(buffer, errorString);
[all...]
H A DOSKext.cpp1582 OSString * errorString = NULL; // must release local
1622 parsedXML = OSUnserializeXML(infoDictAddr, &errorString);
1629 if (errorString && errorString->getCStringNoCopy()) {
1630 errorCString = errorString->getCStringNoCopy();
1717 OSSafeRelease(errorString);
2355 OSString * errorString = NULL; // must release local
2402 OSSafeReleaseNULL(errorString);
2431 &errorString);
2438 if (errorString
2679 OSString * errorString = NULL; // must release local
7661 OSString * errorString = NULL; // must release local
[all...]
/xnu-2422.115.4/iokit/Kernel/
H A DIOCatalogue.cpp91 OSString * errorString; local
96 array = OSDynamicCast(OSArray, OSUnserialize(gIOKernelConfigTables, &errorString));
97 if (!array && errorString) {
99 errorString->getCStringNoCopy());
100 errorString->release();

Completed in 91 milliseconds