OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CommandStatusException
(Results
1 - 18
of
18
) sorted by null
/packages/apps/Exchange/src/com/android/exchange/
CommandStatusException.java
23
public class
CommandStatusException
extends EasException {
137
public
CommandStatusException
(int status) {
142
public
CommandStatusException
(int status, String itemId) {
EasAccountService.java
44
import com.android.exchange.
CommandStatusException
.CommandStatus;
288
throw new
CommandStatusException
(CommandStatus.NEEDS_PROVISIONING);
341
throw new
CommandStatusException
(CommandStatus.NEEDS_PROVISIONING);
390
} catch (
CommandStatusException
e) {
509
IllegalHeartbeatException,
CommandStatusException
{
[
all
...]
EasOutboxService.java
42
import com.android.exchange.
CommandStatusException
.CommandStatus;
EasSyncService.java
61
import com.android.exchange.
CommandStatusException
.CommandStatus;
515
throw new
CommandStatusException
(CommandStatus.NEEDS_PROVISIONING);
537
// seeing if a
CommandStatusException
is thrown (indicating a
561
} catch (
CommandStatusException
e) {
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncParser.java
31
import com.android.exchange.
CommandStatusException
;
32
import com.android.exchange.
CommandStatusException
.CommandStatus;
93
* @throws
CommandStatusException
95
public abstract void commandsParser() throws IOException,
CommandStatusException
;
129
* @throws
CommandStatusException
132
public boolean parse() throws IOException,
CommandStatusException
{
186
throw new
CommandStatusException
(status);
PingParser.java
19
import com.android.exchange.
CommandStatusException
.CommandStatus;
AbstractSyncAdapter.java
32
import com.android.exchange.
CommandStatusException
;
66
public abstract boolean parse(InputStream is) throws IOException,
CommandStatusException
;
FolderSyncParser.java
40
import com.android.exchange.
CommandStatusException
;
41
import com.android.exchange.
CommandStatusException
.CommandStatus;
198
public boolean parse() throws IOException,
CommandStatusException
{
234
throw new
CommandStatusException
(status);
[
all
...]
EmailSyncParser.java
37
import com.android.exchange.
CommandStatusException
;
343
private EmailContent.Message addParser() throws IOException,
CommandStatusException
{
368
throw new
CommandStatusException
(status, msg.mServerId);
671
public void commandsParser() throws IOException,
CommandStatusException
{
735
} catch (
CommandStatusException
sse) {
757
public boolean parse() throws IOException,
CommandStatusException
{
[
all
...]
EmailSyncAdapter.java
63
import com.android.exchange.
CommandStatusException
;
257
public boolean parse(InputStream is) throws IOException,
CommandStatusException
{
728
private Message addParser() throws IOException,
CommandStatusException
{
753
throw new
CommandStatusException
(status, msg.mServerId);
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/eas/
EasFolderSync.java
27
import com.android.exchange.
CommandStatusException
;
200
throws IOException,
CommandStatusException
{
EasSyncBase.java
11
import com.android.exchange.
CommandStatusException
;
108
throws IOException,
CommandStatusException
{
EasOperation.java
36
import com.android.exchange.
CommandStatusException
;
339
} catch (final
CommandStatusException
e) {
343
// The various parsers handle this by throwing a
CommandStatusException
.
346
LogUtils.e(LOG_TAG, "
CommandStatusException
: %s, %d", getCommand(), status);
347
if (
CommandStatusException
.CommandStatus.isNeedsProvisioning(status)) {
349
} else if (
CommandStatusException
.CommandStatus.isDeniedAccess(status)) {
500
throws IOException,
CommandStatusException
;
[
all
...]
EasSearch.java
10
import com.android.exchange.
CommandStatusException
;
149
throws IOException,
CommandStatusException
{
EasOutboxSync.java
21
import com.android.exchange.
CommandStatusException
;
24
import com.android.exchange.
CommandStatusException
.CommandStatus;
160
protected int handleResponse(EasResponse response) throws IOException,
CommandStatusException
{
EasSync.java
31
import com.android.exchange.
CommandStatusException
;
214
throws IOException,
CommandStatusException
{
EasPing.java
32
import com.android.exchange.
CommandStatusException
.CommandStatus;
/packages/apps/Exchange/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java
29
import com.android.exchange.
CommandStatusException
;
298
* @throws
CommandStatusException
301
CommandStatusException
{
347
public void brokentestComplexFolderListParse1() throws
CommandStatusException
, IOException {
352
public void brokentestComplexFolderListParse2() throws
CommandStatusException
, IOException {
357
public void brokentestComplexFolderListParse3() throws
CommandStatusException
, IOException {
Completed in 70 milliseconds