• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/xnu-2422.115.4/libkern/c++/

Lines Matching defs:request

1773     * be getting a copy of the kext in the user load request mkext.
2814 * request to process, so we are successful (no errors occurred).
3202 "Received kext load request from user space.");
3237 "Failed to create wrapper for kext load request.");
3247 "Failed to read kext load request.");
3256 "Received kext load request with no predicate; skipping.");
3267 "Received kext load request with no arguments.");
3278 "Received kext load request with no kext identifier.");
3305 "Received request from user space to load kext %s.",
3353 "Kext load request buffer from user space still retained by a kext; "
3398 "Failed to create serializer on log info for request from user space.");
3399 /* Incidental error; we're going to (try to) allow the request
3407 "Failed to serialize log info for request from user space.");
3408 /* Incidental error; we're going to (try to) allow the request
3419 "Failed to copy log info for request from user space.");
3420 /* Incidental error; we're going to (try to) allow the request
3598 /* If we are terminating, send the request to the IOCatalogue
4482 /* Create a new request unless one is already sitting
4511 "Kext %s not found; queued load request to user space.",
6262 * might be in the kext (request callbacks, module stop function).
6458 /* Create a new request unless one is already sitting
6663 * Remove any request callbacks marked as stale,
7697 "Invalid request from user space (not nul-terminated).");
7716 "Error unserializing request from user space: %s.",
7727 "Recieved kext request from user space with no predicate.");
7735 "Received '%s' request from user space.",
7775 "Invalid arguments to kext start request.");
7780 "Kext %s not found for start request.",
7792 "Invalid arguments to kext stop request.");
7797 "Kext %s not found for stop request.",
7809 "Invalid arguments to kext unload request.");
7814 "Kext %s not found for unload request.",
7851 "Invalid arguments to kext info request.");
7862 "Invalid arguments to kext info request.");
7935 "Received '%s' invalid request from user space.",
7941 * Now we have handle the request, or not. Gather up the response & logging
7960 "Mistakenly generated both data & plist responses to user request "
7979 "Failed to serialize response to request from user space.");
7999 "Failed to copy response to request from user space.");
8586 "Can't request resource %s for %s - requests to user space are disabled.",
8602 "Resource request has bad callback address.");
8609 "Resource request callback is in a kext that is not started.");
8621 /* If we're wrapped the next available request tag around to the negative
8627 "No more request tags available; restart required.");
8702 /* If we didn't succeed, yank the request & callback
8834 /* Get the args from the request. Right now we need the tag
8846 /* Look for a callback record matching this request's tag.
8887 "Can't invoke callback for resource request; ");
8995 OSDictionary * request = OSDynamicCast(OSDictionary,
8998 if (!request) {
9002 _OSKextGetRequestArgument(request,
9019 invokeRequestCallback(request, callbackResult);
9046 OSDictionary * request = OSDynamicCast(OSDictionary,
9049 if (!request) {
9053 _OSKextGetRequestArgument(request,
9081 OSDictionary * request = NULL; // must release on error
9084 request = OSDictionary::withCapacity(2);
9085 if (!request) {
9088 result = _OSDictionarySetCStringValue(request,
9097 if (request) request->release();
9099 *requestP = request;