Home
last modified time | relevance | path

Searched refs:CommandStatusException (Results 1 – 18 of 18) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/adapter/
DAbstractSyncParser.java31 import com.android.exchange.CommandStatusException;
32 import com.android.exchange.CommandStatusException.CommandStatus;
95 public abstract void commandsParser() throws IOException, CommandStatusException; in commandsParser()
132 public boolean parse() throws IOException, CommandStatusException { in parse()
186 throw new CommandStatusException(status); in parse()
DEmailSyncParser.java37 import com.android.exchange.CommandStatusException;
343 private EmailContent.Message addParser() throws IOException, CommandStatusException { in addParser()
368 throw new CommandStatusException(status, msg.mServerId); in addParser()
671 public void commandsParser() throws IOException, CommandStatusException { in commandsParser()
735 } catch (CommandStatusException sse) { in responsesParser()
757 public boolean parse() throws IOException, CommandStatusException { in parse()
DFolderSyncParser.java40 import com.android.exchange.CommandStatusException;
41 import com.android.exchange.CommandStatusException.CommandStatus;
198 public boolean parse() throws IOException, CommandStatusException { in parse()
234 throw new CommandStatusException(status); in parse()
DEmailSyncAdapter.java63 import com.android.exchange.CommandStatusException;
257 public boolean parse(InputStream is) throws IOException, CommandStatusException { in parse()
728 private Message addParser() throws IOException, CommandStatusException {
753 throw new CommandStatusException(status, msg.mServerId);
1051 public void commandsParser() throws IOException, CommandStatusException {
1105 } catch (CommandStatusException sse) {
DAbstractSyncAdapter.java32 import com.android.exchange.CommandStatusException;
66 public abstract boolean parse(InputStream is) throws IOException, CommandStatusException; in parse()
DPingParser.java19 import com.android.exchange.CommandStatusException.CommandStatus;
/packages/apps/Exchange/tests/src/com/android/exchange/adapter/
DFolderSyncParserTests.java29 import com.android.exchange.CommandStatusException;
301 CommandStatusException { in testComplexFolderListParse()
347 public void brokentestComplexFolderListParse1() throws CommandStatusException, IOException { in brokentestComplexFolderListParse1()
352 public void brokentestComplexFolderListParse2() throws CommandStatusException, IOException { in brokentestComplexFolderListParse2()
357 public void brokentestComplexFolderListParse3() throws CommandStatusException, IOException { in brokentestComplexFolderListParse3()
/packages/apps/Exchange/src/com/android/exchange/
DEasAccountService.java44 import com.android.exchange.CommandStatusException.CommandStatus;
288 throw new CommandStatusException(CommandStatus.NEEDS_PROVISIONING); in sync()
341 throw new CommandStatusException(CommandStatus.NEEDS_PROVISIONING); in sync()
390 } catch (CommandStatusException e) { in sync()
509 IllegalHeartbeatException, CommandStatusException { in runPingLoop()
778 CommandStatusException { in parsePingResult()
DCommandStatusException.java23 public class CommandStatusException extends EasException { class
137 public CommandStatusException(int status) { in CommandStatusException() method in CommandStatusException
142 public CommandStatusException(int status, String itemId) { in CommandStatusException() method in CommandStatusException
DEasSyncService.java61 import com.android.exchange.CommandStatusException.CommandStatus;
515 throw new CommandStatusException(CommandStatus.NEEDS_PROVISIONING); in validateAccount()
561 } catch (CommandStatusException e) { in validateAccount()
1755 } catch (CommandStatusException e) {
DEasOutboxService.java42 import com.android.exchange.CommandStatusException.CommandStatus;
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasOperation.java36 import com.android.exchange.CommandStatusException;
339 } catch (final CommandStatusException e) { in performOperation()
347 if (CommandStatusException.CommandStatus.isNeedsProvisioning(status)) { in performOperation()
349 } else if (CommandStatusException.CommandStatus.isDeniedAccess(status)) { in performOperation()
500 throws IOException, CommandStatusException; in handleResponse()
DEasOutboxSync.java21 import com.android.exchange.CommandStatusException;
24 import com.android.exchange.CommandStatusException.CommandStatus;
160 protected int handleResponse(EasResponse response) throws IOException, CommandStatusException { in handleResponse()
DEasSyncBase.java11 import com.android.exchange.CommandStatusException;
108 throws IOException, CommandStatusException { in handleResponse()
DEasFolderSync.java27 import com.android.exchange.CommandStatusException;
200 throws IOException, CommandStatusException { in handleResponse()
DEasSearch.java10 import com.android.exchange.CommandStatusException;
149 throws IOException, CommandStatusException { in handleResponse()
DEasSync.java31 import com.android.exchange.CommandStatusException;
214 throws IOException, CommandStatusException { in handleResponse()
DEasPing.java32 import com.android.exchange.CommandStatusException.CommandStatus;