Searched refs:request (Results 1 - 7 of 7) sorted by relevance

/system/core/debuggerd/
H A Ddebuggerd.c219 XLOG("crash request of size %d abort_msg_address=%#08x\n", status, msg.abort_msg_address);
221 LOG("invalid crash request of size %d (from pid=%d uid=%d)\n",
239 LOG("tid %d does not exist in pid %d. ignoring debug request\n",
250 LOG("tid %d does not exist. ignoring explicit dump request\n",
261 static bool should_attach_gdb(debugger_request_t* request) { argument
262 if (request->action == DEBUGGER_ACTION_CRASH) {
266 return debug_uid >= 0 && request->uid <= (uid_t)debug_uid;
274 debugger_request_t request; local
275 memset(&request, 0, sizeof(request));
[all...]
/system/core/adb/
H A Dtest_track_devices.c58 const char* request = "host:track-devices"; local
70 /* send the request */
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
73 panic( "could not send request" );
77 panic( "could not read request" );
H A Dtest_track_jdwp.c58 const char* request = "track-jdwp"; local
70 /* send the request */
71 len = snprintf( buffer, sizeof buffer, "%04x%s", strlen(request), request );
73 panic( "could not send request" );
77 panic( "could not read request" );
/system/core/fastboot/
H A Dusb_osx.c69 IOUSBFindInterfaceRequest request; local
83 request.bInterfaceClass = kIOUSBFindInterfaceDontCare;
84 request.bInterfaceSubClass = kIOUSBFindInterfaceDontCare;
85 request.bInterfaceProtocol = kIOUSBFindInterfaceDontCare;
86 request.bAlternateSetting = kIOUSBFindInterfaceDontCare;
96 kr = (*dev)->CreateInterfaceIterator(dev, &request, &iterator);
/system/core/include/usbhost/
H A Dusbhost.h195 int request,
215 /* Releases all resources associated with the request */
218 /* Submits a read or write request on the specified device */
/system/core/sh/
H A Doutput.c510 xioctl(int fd, unsigned long request, char *arg) argument
514 while ((i = ioctl(fd, request, arg)) == -1 && errno == EINTR);
/system/core/libusbhost/
H A Dusbhost.c548 int request,
563 ctrl.bRequest = request;
580 // need to limit request size to avoid EINVAL
638 // need to limit request size to avoid EINVAL
546 usb_device_control_transfer(struct usb_device *device, int requestType, int request, int value, int index, void* buffer, int length, unsigned int timeout) argument

Completed in 452 milliseconds