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

1 2 3 4 5 6 7

  /bionic/libc/arch-arm/syscalls/
acct.S 5 ENTRY(acct) function
14 END(acct)
  /bionic/libc/arch-arm64/syscalls/
acct.S 5 ENTRY(acct) function
14 END(acct)
  /bionic/libc/arch-mips/syscalls/
acct.S 5 ENTRY(acct) function
19 END(acct)
  /bionic/libc/arch-x86_64/syscalls/
acct.S 5 ENTRY(acct) function
15 END(acct)
  /bionic/libc/arch-x86/syscalls/
acct.S 5 ENTRY(acct) function
21 END(acct)
  /bionic/libc/arch-mips64/syscalls/
acct.S 5 ENTRY(acct) function
25 END(acct)
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 92 Account account = ProviderTestUtils.setupAccount("acct", true, mMockContext);
118 private Attachment setupSimpleAttachment(String name, long size, Account acct) {
120 att.mAccountKey = acct.mId;
124 Account acct = ProviderTestUtils.setupAccount("acct1", true, mMockContext); local
127 SecurityPolicy.setAccountPolicy(mMockContext, acct, policy1, null);
128 Mailbox box = ProviderTestUtils.setupMailbox("box1", acct.mId, true, mMockContext);
129 Message msg1 = ProviderTestUtils.setupMessage("message1", acct.mId, box.mId, false, false,
132 Attachment att1 = setupSimpleAttachment("fileName1", 10001L, acct);
134 Attachment att2 = setupSimpleAttachment("fileName2", 20001L, acct);
138 Message msg2 = ProviderTestUtils.setupMessage("message2", acct.mId, box.mId, false, false
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinner.java 60 for (ReplyFromAccount acct : mReplyFromAccounts) {
61 if (TextUtils.equals(mAccount.name, acct.name)
62 && TextUtils.equals(mAccount.address, acct.address)) {
72 for (ReplyFromAccount acct : mReplyFromAccounts) {
73 if (accountString.equals(acct.address)) {
74 return acct;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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/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/Exchange/src/com/android/exchange/service/
CalendarSyncAdapterService.java 68 public void onPerformSync(android.accounts.Account acct, Bundle extras,
72 acct.toString(), extras.toString());
82 CalendarSyncAdapterService.this, acct.name);
95 new String[] {acct.name}, null);
103 LogUtils.d(TAG, "No changes for " + acct.name);
ContactsSyncAdapterService.java 68 public void onPerformSync(android.accounts.Account acct, Bundle extras,
71 LogUtils.d(TAG, "onPerformSync contacts starting %s, %s", acct.toString(),
82 ContactsSyncAdapterService.this, acct.name);
95 .appendQueryParameter(RawContacts.ACCOUNT_NAME, acct.name)
103 .appendQueryParameter(RawContacts.ACCOUNT_NAME, acct.name)
EmailSyncAdapterService.java 83 public void onPerformSync(final android.accounts.Account acct, final Bundle extras,
87 LogUtils.d(TAG, "onPerformSync email: %s, %s", acct.toString(), extras.toString());
102 EmailSyncAdapterService.this, acct.name);
  /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/Email/provider_src/com/android/email/service/
PopImapSyncAdapterService.java 203 Account acct = new Account(); local
204 acct.restore(c);
206 LogUtils.d(TAG, "Upload sync request for " + acct.mDisplayName);
212 new String[] {Long.toString(acct.mId)},
232 LogUtils.d(TAG, "Sync request for " + acct.mDisplayName);
237 EmailServiceUtils.getServiceForAccount(context, acct.mId);
238 service.updateFolderList(acct.mId);
245 final long inboxId = Mailbox.findMailboxOfType(context, acct.mId,
  /external/valgrind/drd/scripts/
measurement-functions 52 if [ ! -e /usr/sbin/dump-acct ]; then
54 echo "installed. Please install the acct package (Debian systems)." >&2
58 if ! { dump-acct -h 2>&1 | grep -q -w format; }; then
59 echo "Error: the installed version of dump-acct is not recent enough." >&2
71 /usr/sbin/dump-acct "${pacct}" | \
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
UserAccountTest.groovy 40 def acct = new UserAccount(USERNAME, PASSWORD, HOME_DIR)
41 assert acct.username == USERNAME
42 assert acct.password == PASSWORD
43 assert acct.homeDirectory == HOME_DIR
  /bionic/libc/kernel/uapi/linux/
acct.h 29 struct acct { struct
  /development/ndk/platforms/android-21/include/linux/
acct.h 29 struct acct struct
  /external/kernel-headers/original/uapi/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.11-4.8/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.15-4.8/sysroot/usr/include/linux/
acct.h 28 * See linux/kernel/acct.c for the specific encoding systems used.
43 struct acct struct

Completed in 6010 milliseconds

1 2 3 4 5 6 7