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

/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasSyncService.java480 resp = sendHttpClientPost("FolderSync", s.toByteArray());
925 * TODO: figure out why sendHttpClientPost() hangs - possibly pool exhaustion
939 EasResponse resp = svc.sendHttpClientPost("Search", s.toByteArray());
1068 EasResponse resp = sendHttpClientPost("MoveItems", s.toByteArray());
1132 EasResponse resp = sendHttpClientPost("MeetingResponse", s.toByteArray());
1245 public EasResponse sendHttpClientPost(String cmd, byte[] bytes) throws IOException { method in class:EasSyncService
1246 return sendHttpClientPost(cmd, new ByteArrayEntity(bytes), COMMAND_TIMEOUT);
1249 protected EasResponse sendHttpClientPost(String cmd, HttpEntity entity) throws IOException { method in class:EasSyncService
1250 return sendHttpClientPost(cmd, entity, COMMAND_TIMEOUT);
1255 return sendHttpClientPost(PING_COMMAN
1300 public EasResponse sendHttpClientPost(String cmd, HttpEntity entity, int timeout) method in class:EasSyncService
[all...]

Completed in 52 milliseconds