HomeSort by relevance Sort by last modified time
    Searched defs:acct (Results 1 - 25 of 26) sorted by null

1 2

  /bionic/libc/arch-arm/syscalls/
acct.S 6 ENTRY(acct) function
15 END(acct)
  /bionic/libc/arch-mips/syscalls/
acct.S 4 .globl acct
6 .ent acct
8 acct: label
22 .end acct
  /bionic/libc/arch-x86/syscalls/
acct.S 6 ENTRY(acct) function
21 END(acct)
  /packages/apps/Email/tests/src/com/android/email/activity/
MessagesAdapterTests.java 44 Account acct = ProviderTestUtils.setupAccount("acct1", false, mProviderContext); local
46 acct.mHostAuthRecv =
48 acct.mHostAuthKeyRecv = acct.mHostAuthRecv.mId;
49 acct.save(mProviderContext);
50 return acct.mId;
MailboxFinderTest.java 97 Account acct = ProviderTestUtils.setupAccount("acct1", false, mProviderContext); local
99 acct.mFlags |= Account.FLAGS_SECURITY_HOLD;
101 acct.save(mProviderContext);
102 return acct.mId;
  /packages/apps/Calendar/src/com/android/calendar/
CalendarSettingsActivity.java 50 Account acct = accounts[i]; local
51 if (ContentResolver.getIsSyncable(acct, CalendarContract.AUTHORITY) > 0) {
53 accountHeader.title = acct.name;
57 args.putString(Calendars.ACCOUNT_NAME, acct.name);
58 args.putString(Calendars.ACCOUNT_TYPE, acct.type);
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityMediumTests.java 71 Account acct = Utility.findExistingAccount(mMockContext, -1, "address-ha1", "login-ha1"); local
72 assertNotNull(acct);
73 assertEquals("account1", acct.mDisplayName);
74 acct = Utility.findExistingAccount(mMockContext, -1, "address-ha2", "login-ha2");
75 assertNotNull(acct);
76 assertEquals("account2", acct.mDisplayName);
78 acct = Utility.findExistingAccount(mMockContext, -1, "address-ha3", "login-ha3");
79 assertNull(acct);
81 acct = Utility.findExistingAccount(mMockContext, account1.mId, "address-ha1", "login-ha1");
82 assertNull(acct);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
acct.h 28 * See linux/kernel/acct.c for the specific encoding systems used.
43 struct acct struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
acct.h 35 exponent and a 13-bit fraction. See linux/kernel/acct.c for the
41 struct acct struct
105 extern int acct (__const char *__filename) __THROW;
109 #endif /* sys/acct.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
acct.h 28 * See linux/kernel/acct.c for the specific encoding systems used.
43 struct acct struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
acct.h 35 exponent and a 13-bit fraction. See linux/kernel/acct.c for the
41 struct acct struct
105 extern int acct (__const char *__filename) __THROW;
109 #endif /* sys/acct.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
acct.h 28 * See linux/kernel/acct.c for the specific encoding systems used.
43 struct acct struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
acct.h 35 exponent and a 13-bit fraction. See linux/kernel/acct.c for the
41 struct acct struct
105 extern int acct (__const char *__filename) __THROW;
109 #endif /* sys/acct.h */
  /packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java 187 Account acct = new Account(); local
188 acct.restore(c);
190 LogUtils.d(TAG, "Upload sync request for " + acct.mDisplayName);
196 new String[] {Long.toString(acct.mId)},
216 LogUtils.d(TAG, "Sync request for " + acct.mDisplayName);
221 EmailServiceUtils.getServiceForAccount(context, acct.mId);
222 service.updateFolderList(acct.mId);
229 final long inboxId = Mailbox.findMailboxOfType(context, acct.mId,
EmailServiceStub.java 112 final android.accounts.Account acct = new android.accounts.Account(account.mEmailAddress, local
123 ContentResolver.requestSync(acct, EmailContent.AUTHORITY, extras);
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 90 Account account = ProviderTestUtils.setupAccount("acct", true, mMockContext);
116 private Attachment setupSimpleAttachment(String name, long size, Account acct) {
118 att.mAccountKey = acct.mId;
122 Account acct = ProviderTestUtils.setupAccount("acct1", true, mMockContext); local
125 Policy.setAccountPolicy(mMockContext, acct, policy1, null);
126 Mailbox box = ProviderTestUtils.setupMailbox("box1", acct.mId, true, mMockContext);
127 Message msg1 = ProviderTestUtils.setupMessage("message1", acct.mId, box.mId, false, false,
130 Attachment att1 = setupSimpleAttachment("fileName1", 10001L, acct);
132 Attachment att2 = setupSimpleAttachment("fileName2", 20001L, acct);
136 Message msg2 = ProviderTestUtils.setupMessage("message2", acct.mId, box.mId, false, false
    [all...]
ContentCacheTests.java 137 Account acct = ProviderTestUtils.setupAccount("account", true, context); local
138 ProviderTestUtils.setupMailbox("box1", acct.mId, true, context);
139 Mailbox box = ProviderTestUtils.setupMailbox("box2", acct.mId, true, context);
  /packages/apps/Exchange/src/com/android/exchange/
ExchangeService.java 154 Account acct = Account.restoreAccountWithId(exchangeService, m.mAccountKey);
155 if (acct == null) return;
159 if (onSyncDisabledHold(acct)) {
160 releaseSyncHolds(exchangeService, AbstractSyncService.EXIT_ACCESS_DENIED, acct);
162 } else if (onSecurityHold(acct)) {
164 acct);
292 public int getCapabilities(Account acct) throws RemoteException {
293 String easVersion = acct.mProtocolVersion;
580 Account acct = Account.restoreAccountWithId(context, accountId); local
581 if (acct == null)
    [all...]
EasSyncService.java 952 Account acct = Account.restoreAccountWithId(context, accountId); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationSyncDisabledTipView.java 224 android.accounts.Account acct = account.getAccountManagerAccount(); local
226 !ContentResolver.getSyncAutomatically(acct, account.syncAuthority)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 82 host, user, passwd, acct, timeout
112 # and user, passwd, acct (for login())
113 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''):
377 if not acct: acct = ''
389 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
498 def acct(self, password) member in class:FTP
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 82 host, user, passwd, acct, timeout
112 # and user, passwd, acct (for login())
113 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''):
377 if not acct: acct = ''
389 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
498 def acct(self, password) member in class:FTP
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 167 Account acct = mAccount; local
184 acct = MailAppProvider.getAccountFromAccountUri(accountUri);
189 mContext, acct, mUpdater, mSelectionSet.values(), true, mFolder,
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettings.java 775 android.accounts.Account acct = local
779 new String[] {acct.name}, null, Account.ID_PROJECTION_COLUMN, -1L);
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
SyncManager.java 1234 Account acct = Account.restoreAccountWithId(this, m.mAccountKey); local
    [all...]

Completed in 1159 milliseconds

1 2