HomeSort by relevance Sort by last modified time
    Searched refs:who (Results 301 - 325 of 588) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 411 def deleteacl(self, mailbox, who):
412 """Delete the ACLs (remove any rights) set for who on mailbox.
414 (typ, [data]) = <instance>.deleteacl(mailbox, who)
416 return self._simple_command('DELETEACL', mailbox, who)
663 def setacl(self, mailbox, who, what):
666 (typ, [data]) = <instance>.setacl(mailbox, who, what)
668 return self._simple_command('SETACL', mailbox, who, what)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
register.py 104 1. figure who the user is, and then
120 Otherwise, to figure who the user is, we offer the user three
142 We need to know who you are, so please choose either:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 411 def deleteacl(self, mailbox, who):
412 """Delete the ACLs (remove any rights) set for who on mailbox.
414 (typ, [data]) = <instance>.deleteacl(mailbox, who)
416 return self._simple_command('DELETEACL', mailbox, who)
663 def setacl(self, mailbox, who, what):
666 (typ, [data]) = <instance>.setacl(mailbox, who, what)
668 return self._simple_command('SETACL', mailbox, who, what)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsView.java 425 protected boolean verifyDrawable(Drawable who) {
429 if (d == who) {
433 return super.verifyDrawable(who);
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
Fragment.java     [all...]
  /prebuilts/misc/common/android-support-test/runner/
runner-0.5-release-no-dep.jar 
  /external/valgrind/exp-sgcheck/
sg_main.c 479 static void pp_StackTree ( WordFM* sitree, const HChar* who )
482 VG_(printf)("<<< BEGIN pp_StackTree %s\n", who );
489 VG_(printf)(">>> END pp_StackTree %s\n", who );
639 const HChar* who )
643 VG_(printf)("<<< GlobalBlockTree (%s)\n", who);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java     [all...]
  /external/iproute2/ip/
ipaddress.c 612 int print_linkinfo_brief(const struct sockaddr_nl *who,
713 int print_linkinfo(const struct sockaddr_nl *who,
941 int print_addrinfo(const struct sockaddr_nl *who, struct nlmsghdr *n,
1203 static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n,
1222 ll_remember_index(who, n, NULL);
1265 static int save_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n,
    [all...]
  /prebuilts/go/darwin-x86/src/compress/gzip/
gunzip_test.go 100 "resting place for those who here gave their lives that that\n" +
105 " The brave men, living and dead, who struggled here, have\n" +
110 "unfinished work which they who fought here have thus far so\n" +
  /prebuilts/go/darwin-x86/src/syscall/
zsysnum_freebsd_386.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
zsysnum_freebsd_amd64.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
zsysnum_freebsd_arm.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
zsyscall_darwin_386.go 648 func Getpriority(which int, who int) (prio int, err error) {
649 r0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)
669 func Getrusage(who int, rusage *Rusage) (err error) {
670 _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
1136 func Setpriority(which int, who int, prio int) (err error) {
1137 _, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))
    [all...]
zsyscall_darwin_amd64.go 648 func Getpriority(which int, who int) (prio int, err error) {
649 r0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)
669 func Getrusage(who int, rusage *Rusage) (err error) {
670 _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
1136 func Setpriority(which int, who int, prio int) (err error) {
1137 _, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))
    [all...]
zsyscall_darwin_arm.go 648 func Getpriority(which int, who int) (prio int, err error) {
649 r0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)
669 func Getrusage(who int, rusage *Rusage) (err error) {
670 _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
1136 func Setpriority(which int, who int, prio int) (err error) {
1137 _, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))
    [all...]
  /prebuilts/go/linux-x86/src/compress/gzip/
gunzip_test.go 100 "resting place for those who here gave their lives that that\n" +
105 " The brave men, living and dead, who struggled here, have\n" +
110 "unfinished work which they who fought here have thus far so\n" +
  /prebuilts/go/linux-x86/src/syscall/
zsysnum_freebsd_386.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
zsysnum_freebsd_amd64.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
zsysnum_freebsd_arm.go 83 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
86 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
91 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
  /external/valgrind/coregrind/
m_redir.c 310 static void show_redir_state ( const HChar* who );
    [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 289 void AudioPolicyService::NotificationClient::binderDied(const wp<IBinder>& who __unused)
337 void AudioPolicyService::binderDied(const wp<IBinder>& who) {
338 ALOGW("binderDied() %p, calling pid %d", who.unsafe_get(),
    [all...]
  /frameworks/base/core/java/android/app/
Fragment.java     [all...]
LoadedApk.java     [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedVectorDrawable.java 807 public void invalidateDrawable(@NonNull Drawable who) {
812 public void scheduleDrawable(@NonNull Drawable who, @NonNull Runnable what, long when) {
817 public void unscheduleDrawable(@NonNull Drawable who, @NonNull Runnable what) {
    [all...]

Completed in 1901 milliseconds

<<11121314151617181920>>