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

/system/core/debuggerd/
H A Ddebuggerd.c220 XLOG("crash request of size %d abort_msg_address=%#08x\n", status, msg.abort_msg_address);
222 LOG("invalid crash request of size %d (from pid=%d uid=%d)\n",
240 LOG("tid %d does not exist in pid %d. ignoring debug request\n",
251 LOG("tid %d does not exist. ignoring explicit dump request\n",
262 static bool should_attach_gdb(debugger_request_t* request) { argument
263 if (request->action == DEBUGGER_ACTION_CRASH) {
267 return debug_uid >= 0 && request->uid <= (uid_t)debug_uid;
275 debugger_request_t request; local
276 memset(&request, 0, sizeof(request));
[all...]
/system/core/libutils/
H A DLooper.cpp164 int ident = response.request.ident;
166 int fd = response.request.fd;
168 void* data = response.request.data;
321 if (response.request.ident == ALOOPER_POLL_CALLBACK) {
322 int fd = response.request.fd;
324 void* data = response.request.data;
327 this, response.request.callback.get(), fd, events, data);
329 int callbackResult = response.request.callback->handleEvent(fd, events, data);
335 response.request.callback.clear();
397 void Looper::pushResponse(int events, const Request& request) { argument
435 Request request; local
[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/utils/
H A DLooper.h339 Request request; member in struct:android::Looper::Response
380 void pushResponse(int events, const Request& request);
/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.c561 int request,
576 ctrl.bRequest = request;
593 // need to limit request size to avoid EINVAL
651 // need to limit request size to avoid EINVAL
559 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 214 milliseconds