Searched defs:post (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDeferredHandler.java28 * Queue of things to run on a looper thread. Items posted with {@link #post} will not
76 public void post(Runnable runnable) { method in class:DeferredHandler
87 post(new IdleRunnable(runnable));
/packages/apps/Gallery3D/src/com/cooliris/picasa/
H A DGDataClient.java92 public void post(String feedUrl, byte[] data, String contentType, Operation operation) throws IOException { method in class:GDataClient
95 HttpPost post = new HttpPost(feedUrl);
96 post.setEntity(entity);
97 callMethod(post, operation);
103 HttpPost post = new HttpPost(feedUrl);
104 post.setHeader(X_HTTP_METHOD_OVERRIDE, "PUT");
105 post.setEntity(entity);
106 callMethod(post, operation);
112 HttpPost post = new HttpPost(feedUrl);
113 post
[all...]
/packages/apps/Email/src/com/android/exchange/
H A DEasSyncService.java171 // The amount of time we allow for a thread to release its post lock after receiving an alert
256 HttpPost post;
263 // Get a reference to the current post lock
264 post = mPendingPost;
265 if (post != null) {
267 URI uri = post.getURI();
280 post.abort();
300 // If the thread is still hanging around and the same post is pending, let's try to
302 if ((s != State.TERMINATED) && (mPendingPost != null) && (mPendingPost == post)) {
475 * @param post th
478 getRedirect(HttpResponse resp, HttpPost post) argument
504 postAutodiscover(HttpClient client, HttpPost post, boolean canRetry) argument
[all...]

Completed in 48 milliseconds