Searched refs:request (Results 101 - 125 of 166) sorted by relevance

1234567

/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp261 status_t NuPlayerDriver::invoke(const Parcel &request, Parcel *reply) { argument
268 status_t ret = request.readInt32(&methodId);
277 int mode = request.readInt32();
291 status_t NuPlayerDriver::setParameter(int key, const Parcel &request) { argument
/frameworks/base/core/java/android/ddm/
H A DDdmHandleAppName.java61 public Chunk handleChunk(Chunk request) { argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryArea.h62 // If the given file handler is read-only, client can not request a region
68 // Client can not request a region that out of the universal space.
75 // request - create a MemoryRegion within a sufficient space
79 MemoryRegion* request(size_t pOffset, size_t pLength);
/frameworks/compile/mclinker/unittests/
H A DFragmentRefTest.cpp51 MemoryRegion* region = area->request(0, 4096);
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java999 // spread the blame across all applications with a request
1013 if (D) Log.d(TAG, "provider request: " + provider + " " + providerRequest);
1027 UpdateRecord(String provider, LocationRequest request, Receiver receiver) { argument
1029 mRequest = request;
1110 * @param request the LocationRequest from which to create a sanitized version
1114 * @return a version of request that meets the given resolution and consistency requirements
1117 private LocationRequest createSanitizedRequest(LocationRequest request, int resolutionLevel) { argument
1118 LocationRequest sanitizedRequest = new LocationRequest(request);
1138 request.setFastestInterval(request
1179 requestLocationUpdates(LocationRequest request, ILocationListener listener, PendingIntent intent, String packageName) argument
1203 requestLocationUpdatesLocked(LocationRequest request, Receiver receiver, int pid, int uid, String packageName) argument
1292 getLastLocation(LocationRequest request, String packageName) argument
1339 requestGeofence(LocationRequest request, Geofence geofence, PendingIntent intent, String packageName) argument
[all...]
H A DNativeDaemonConnector.java492 public String request; field in class:NativeDaemonConnector.ResponseQueue.PendingCmd
510 public PendingCmd(int c, String r) {cmdNum = c; request = r;}
539 "Removing request: " + pendingCmd.request + " (" +
589 pw.println(" Cmd " + pendingCmd.cmdNum + " - " + pendingCmd.request);
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp49 MemoryRegion* region = pInput.memArea()->request(pInput.fileOffset(),
78 MemoryRegion* region = pInput.memArea()->request(pInput.fileOffset(),
200 pArchiveFile.memArea()->request((pArchiveFile.fileOffset() + pFileOffset),
295 pArchive.getARFile().memArea()->request((pArchive.getARFile().fileOffset() +
306 pArchive.getARFile().memArea()->request((pArchive.getARFile().fileOffset() +
352 pArchive.getARFile().memArea()->request((pArchive.getARFile().fileOffset() +
363 pArchive.getARFile().memArea()->request((pArchive.getARFile().fileOffset() +
/frameworks/base/obex/javax/obex/
H A DServerOperation.java45 * <STRONG>Request Codes</STRONG> There are four different request codes that
46 * are in this class. 0x02 is a PUT request that signals that the request is not
47 * complete and requires an additional OBEX packet. 0x82 is a PUT request that
48 * says that request is complete. In this case, the server can begin sending the
49 * response. The 0x03 is a GET request that signals that the request is not
51 * that it is done with its request. TODO: Extend the ClientOperation and reuse
96 * @param request the initial request tha
101 ServerOperation(ServerSession p, InputStream in, int request, int maxSize, ServerRequestHandler listen) argument
[all...]
/frameworks/base/services/common_time/
H A Dcommon_time_server.cpp76 // timeout used when waiting for a response to a WhoIsMaster request
92 // timeout used when waiting for a response to a WhoIsMaster request
707 // retry the WhoIsMaster request
720 // a sync request has timed out, so retry
723 // The master has failed to respond to a sync request for too many
729 // initiate the next sync request
753 const WhoIsMasterRequestPacket* request,
756 if (request->senderDeviceID == mDeviceID)
761 mElectionLog.log("RXed WhoIs master request while in state %s. "
764 request
752 handleWhoIsMasterRequest( const WhoIsMasterRequestPacket* request, const sockaddr_storage& srcAddr) argument
875 handleSyncRequest(const SyncRequestPacket* request, const sockaddr_storage& srcAddr) argument
[all...]
/frameworks/av/include/media/
H A Dmediaplayer.h223 status_t invoke(const Parcel& request, Parcel *reply);
230 status_t setParameter(int key, const Parcel& request);
H A DMediaPlayerInterface.h150 virtual status_t setParameter(int key, const Parcel &request) = 0;
165 // for the request and reply.
167 // @param request Parcel that is positioned at the start of the
171 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
/frameworks/base/core/java/android/net/
H A DSntpClient.java67 * Sends an SNTP request to the given host and processes the response.
80 DatagramPacket request = new DatagramPacket(buffer, buffer.length, address, NTP_PORT);
87 // get current time and write it to the request packet
92 socket.send(request);
118 // (response rather than request time)
123 if (false) Log.d(TAG, "request time failed: " + e);
H A DProxy.java209 * @param url the target URL for the request
294 HttpRequest request, HttpContext context) {
299 protected HttpHost determineProxy(HttpHost target, HttpRequest request, argument
305 public HttpRoute determineRoute(HttpHost target, HttpRequest request, argument
293 chooseProxy(List<java.net.Proxy> proxies, HttpHost target, HttpRequest request, HttpContext context) argument
/frameworks/native/include/utils/
H A DLooper.h332 Request request; member in struct:android::Looper::Response
369 void pushResponse(int events, const Request& request);
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java35 * RequestHandle: handles a request session that may include multiple
60 * Creates a new request session.
64 InputStream bodyProvider, int bodyLength, Request request) {
79 mRequest = request;
83 * Creates a new request session with a given Connection. This connection
84 * is used during a synchronous load to handle this request.
88 InputStream bodyProvider, int bodyLength, Request request,
91 request);
96 * Cancels this request
105 * Pauses the loading of this request
62 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request) argument
86 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request, Connection conn) argument
[all...]
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.cpp1581 status_t Parameters::updateRequest(CameraMetadata *request) const {
1586 res = request->update(ANDROID_REQUEST_METADATA_MODE,
1590 res = request->update(ANDROID_CONTROL_AE_TARGET_FPS_RANGE,
1596 res = request->update(ANDROID_CONTROL_AWB_LOCK,
1599 res = request->update(ANDROID_CONTROL_EFFECT_MODE,
1602 res = request->update(ANDROID_CONTROL_AE_ANTIBANDING_MODE,
1616 res = request->update(ANDROID_CONTROL_MODE,
1624 res = request->update(ANDROID_CONTROL_SCENE_MODE,
1648 res = request->update(ANDROID_FLASH_MODE,
1651 res = request
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java108 public Bundle call(String method, String request, Bundle args) argument
110 return MockContentProvider.this.call(method, request, args);
224 public Bundle call(String method, String request, Bundle args) { argument
H A DMockIContentProvider.java90 public Bundle call(String method, String request, Bundle args) argument
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java191 public ProviderRequest request; field in class:GpsLocationProvider.GpsRequest
193 public GpsRequest(ProviderRequest request, WorkSource source) { argument
194 this.request = request;
220 // how often to request NTP time, in milliseconds
782 public void setRequest(ProviderRequest request, WorkSource source) { argument
783 sendMessage(SET_REQUEST, 0, new GpsRequest(request, source));
791 private void handleSetRequest(ProviderRequest request, WorkSource source) { argument
792 if (DEBUG) Log.d(TAG, "setRequest " + request);
796 if (request
[all...]
H A DMockProvider.java156 public void setRequest(ProviderRequest request, WorkSource source) { } argument
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h91 status_t setParameter(int key, const Parcel &request);
93 status_t invoke(const Parcel &request, Parcel *reply);
94 status_t setCacheStatCollectFreq(const Parcel &request);
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.h53 * Submit request for capture. The Camera2Device takes ownership of the
56 status_t capture(CameraMetadata &request);
59 * Submit request for streaming. The Camera2Device makes a copy of the
62 status_t setStreamingRequest(const CameraMetadata &request);
65 * Clear the streaming request slot.
70 * Wait until a request with the given ID has been dequeued by the
72 * immediately if the latest request received by the HAL has this id.
123 status_t createDefaultRequest(int templateId, CameraMetadata *request);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp521 // Shutdown audio first, so that the respone to the reset request
525 // not be as responsive to a reset request.
904 // If there was a seek request before we ever started,
905 // honor the request now.
1647 // a seek request pending that needs to be applied
2276 status_t AwesomePlayer::setParameter(int key, const Parcel &request) { argument
2280 return setCacheStatCollectFreq(request);
2285 return mAudioPlayer->setPlaybackRatePermille(request.readInt32());
2297 status_t AwesomePlayer::setCacheStatCollectFreq(const Parcel &request) { argument
2299 int32_t freqMs = request
2518 invoke(const Parcel &request, Parcel *reply) argument
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp54 MemoryRegion* MemoryArea::request(size_t pOffset, size_t pLength) function in class:MemoryArea
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java547 public Bundle call(String method, String request, Bundle args) { argument
567 if (LOCAL_LOGV) Slog.v(TAG, "call(system:" + request + ") for " + callingUser);
570 return lookupValue(dbHelper, TABLE_SYSTEM, cache, request);
573 if (LOCAL_LOGV) Slog.v(TAG, "call(secure:" + request + ") for " + callingUser);
576 return lookupValue(dbHelper, TABLE_SECURE, cache, request);
579 if (LOCAL_LOGV) Slog.v(TAG, "call(global:" + request + ") for " + callingUser);
583 sGlobalCache, request);
592 values.put(Settings.NameValueTable.NAME, request);
595 if (LOCAL_LOGV) Slog.v(TAG, "call_put(system:" + request + "=" + newValue + ") for " + callingUser);
598 if (LOCAL_LOGV) Slog.v(TAG, "call_put(secure:" + request
[all...]

Completed in 322 milliseconds

1234567