Searched defs:req (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DAttachmentLoader.java62 public AttachmentLoader(EasSyncService service, PartRequest req) { argument
66 mAttachment = req.mAttachment;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexServerSession.java557 public void onDisconnect(HeaderSet req, HeaderSet resp) { argument
H A DTestActivity.java532 public void onDisconnect(HeaderSet req, HeaderSet resp) { argument
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DAbstractSyncService.java281 public void addRequest(Request req) { argument
282 mRequestQueue.offer(req);
285 public void removeRequest(Request req) { argument
286 mRequestQueue.remove(req);
H A DEasSyncService.java698 String req = os.toString();
728 post.setEntity(new StringEntity(req));
1042 * @param req the request (message id and "to" mailbox id)
1045 protected void messageMoveRequest(MessageMoveRequest req) throws IOException { argument
1047 Message msg = Message.restoreMessageWithId(mContext, req.mMessageId);
1060 Mailbox dstMailbox = Mailbox.restoreMailboxWithId(mContext, req.mMailboxId);
1082 ContentUris.withAppendedId(Message.CONTENT_URI, req.mMessageId),
1089 ContentUris.withAppendedId(Message.CONTENT_URI, req.mMessageId),
1097 Message.UPDATED_CONTENT_URI, req.mMessageId), null, null);
1117 * @param req th
1120 sendMeetingResponse(MeetingResponseRequest req) argument
[all...]
H A DExchangeService.java1684 private void requestSync(Mailbox m, int reason, Request req) { argument
1706 if (req != null) {
1707 service.addRequest(req);
2431 static public void sendMessageRequest(Request req) { argument
2433 Message msg = Message.restoreMessageWithId(exchangeService, req.mMessageId);
2457 startManualSync(mailboxId, SYNC_SERVICE_PART_REQUEST, req);
2460 service.addRequest(req);
2490 static public void startManualSync(long mailboxId, int reason, Request req) { argument
2500 exchangeService.requestSync(m, reason, req);
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java229 public void onDisconnect(final HeaderSet req, final HeaderSet resp) { argument
231 if (V) logHeader(req);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DBlobCache.java60 // public void lookup(LookupRequest req) throws IOException;
433 // The blob is stored in the buffer pointed by req.buffer, and the length
434 // is in stored in the req.length variable.
436 // The user can input a non-null value in req.buffer, and this method will
438 // will allocate a new buffer and assign it to req.buffer.
442 public boolean lookup(LookupRequest req) throws IOException { argument
444 if (lookupInternal(req.key, mActiveHashStart)) {
445 if (getBlob(mActiveDataFile, mFileOffset, req)) {
456 if (lookupInternal(req.key, mInactiveHashStart)) {
457 if (getBlob(mInactiveDataFile, mFileOffset, req)) {
488 getBlob(RandomAccessFile file, int offset, LookupRequest req) argument
[all...]
/packages/apps/Mms/src/com/android/mms/util/
H A DBlobCache.java60 // public void lookup(LookupRequest req) throws IOException;
422 // The blob is stored in the buffer pointed by req.buffer, and the length
423 // is in stored in the req.length variable.
425 // The user can input a non-null value in req.buffer, and this method will
427 // will allocate a new buffer and assign it to req.buffer.
431 public boolean lookup(LookupRequest req) throws IOException { argument
433 if (lookupInternal(req.key, mActiveHashStart)) {
434 if (getBlob(mActiveDataFile, mFileOffset, req)) {
445 if (lookupInternal(req.key, mInactiveHashStart)) {
446 if (getBlob(mInactiveDataFile, mFileOffset, req)) {
477 getBlob(RandomAccessFile file, int offset, LookupRequest req) argument
[all...]
/packages/apps/Email/src/com/android/email/service/
H A DAttachmentDownloadService.java202 DownloadRequest req = (DownloadRequest)object;
203 return req.attachmentId == attachmentId;
256 DownloadRequest req = findDownloadRequest(att.mId);
263 if (req != null) {
269 remove(req);
275 if (req == null) {
276 req = new DownloadRequest(context, att);
277 add(req);
283 req.priority + ", priority time " + req
447 tryStartDownload(DownloadRequest req) argument
493 startDownload(Intent intent, DownloadRequest req) argument
504 cancelDownload(DownloadRequest req) argument
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java1949 MediaThumbRequest req = requestMediaThumbnail(path, origUri,
1951 if (req == null) {
1954 synchronized (req) {
1956 while (req.mState == MediaThumbRequest.State.WAIT) {
1957 req.wait();
1962 if (req.mState == MediaThumbRequest.State.DONE) {
1972 private boolean matchThumbRequest(MediaThumbRequest req, int pid, long id, long gid, argument
1976 return (req.mCallingPid == pid) &&
1977 (cancelAllGroupId || req.mGroupId == gid) &&
1978 (cancelAllOrigId || req
[all...]

Completed in 200 milliseconds