/external/iproute2/tc/ |
tc_common.h | 10 extern int print_action(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg); 11 extern int print_filter(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg); 12 extern int print_qdisc(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg); 13 extern int print_class(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
|
tc_monitor.c | 38 int accept_tcmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) 43 print_filter(who, n, arg); 47 print_class(who, n, arg); 51 print_qdisc(who, n, arg); 56 print_action(who, n, arg);
|
/external/iproute2/ip/ |
ip_common.h | 1 extern int print_linkinfo(const struct sockaddr_nl *who, 4 extern int print_addrinfo(const struct sockaddr_nl *who, 7 extern int print_addrlabel(const struct sockaddr_nl *who, 9 extern int print_neigh(const struct sockaddr_nl *who, 11 extern int print_ntable(const struct sockaddr_nl *who, 21 extern int print_route(const struct sockaddr_nl *who, 23 extern int print_prefix(const struct sockaddr_nl *who, 25 extern int print_rule(const struct sockaddr_nl *who,
|
ipmonitor.c | 37 int accept_msg(const struct sockaddr_nl *who, 48 print_route(who, n, arg); 52 ll_remember_index(who, n, NULL); 55 print_linkinfo(who, n, arg); 61 print_addrinfo(who, n, arg); 67 print_addrlabel(who, n, arg); 73 print_neigh(who, n, arg); 79 print_prefix(who, n, arg); 85 print_rule(who, n, arg);
|
xfrm_monitor.c | 44 static int xfrm_acquire_print(const struct sockaddr_nl *who, 105 static int xfrm_state_flush_print(const struct sockaddr_nl *who, 135 static int xfrm_policy_flush_print(const struct sockaddr_nl *who, 173 static int xfrm_report_print(const struct sockaddr_nl *who, 224 static int xfrm_ae_print(const struct sockaddr_nl *who, 252 static int xfrm_accept_msg(const struct sockaddr_nl *who, 265 xfrm_state_print(who, n, arg); 271 xfrm_policy_print(who, n, arg); 274 xfrm_acquire_print(who, n, arg); 277 xfrm_state_flush_print(who, n, arg) [all...] |
/frameworks/base/core/java/android/app/admin/ |
IDevicePolicyManager.aidl | 28 void setPasswordQuality(in ComponentName who, int quality); 29 int getPasswordQuality(in ComponentName who); 31 void setPasswordMinimumLength(in ComponentName who, int length); 32 int getPasswordMinimumLength(in ComponentName who); 42 void setMaximumTimeToLock(in ComponentName who, long timeMs); 43 long getMaximumTimeToLock(in ComponentName who);
|
/external/iproute2/genl/ |
genl_utils.h | 12 int (*print_genlopt)(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
PERF.awk | 33 to = to ? to : ""; # who are the recipients of these buffers 34 from = from ? from : ""; # who are the senders of these buffers 45 # who - who is logging these buffer transfers 54 else if (gsub("^who=", "",arg)) { who = arg } 66 if (!who) { 73 if (substr(who, 0, 3) == "VP_" || 74 substr(who, 0, 3) == "VD_" || 75 substr(who, 0, 3) == "VE_" | [all...] |
/external/kernel-headers/original/linux/ |
ncp_mount.h | 29 __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */ 30 __kernel_pid_t wdog_pid; /* Who cares for our watchdog packets? */ 51 unsigned long mounted_uid; /* Who may umount() this filesystem? */ 53 long wdog_pid; /* Who cares for our watchdog packets? */ 77 __kernel_uid32_t mounted_uid; /* Who may umount() this filesystem? */ 78 __kernel_pid_t wdog_pid; /* Who cares for our watchdog packets? */
|
/frameworks/base/core/java/android/app/ |
ActivityGroup.java | 108 void dispatchActivityResult(String who, int requestCode, int resultCode, 110 if (who != null) { 111 Activity act = mLocalActivityManager.getActivity(who); 114 TAG, "Dispatching result: who=" + who + ", reqCode=" + requestCode 123 super.dispatchActivityResult(who, requestCode, resultCode, data);
|
/development/tools/zoneinfo/tzdata2009s/ |
factory | 6 # For companies who don't want to put time zone specification in
|
/external/iproute2/include/ |
ll_map.h | 4 extern int ll_remember_index(const struct sockaddr_nl *who,
|
/frameworks/base/services/java/com/android/server/am/ |
PendingIntentRecord.java | 46 final String who; field in class:PendingIntentRecord.Key 60 who = _w; 103 if (who != other.who) { 104 if (who != null) { 105 if (!who.equals(other.who)) { 108 } else if (other.who != null) { 222 key.who, key.requestCode, code, finalIntent); 291 if (key.activity != null || key.who != null) [all...] |
BroadcastRecord.java | 39 final String callerPackage; // who sent this 40 final int callingPid; // the pid of who sent this 41 final int callingUid; // the uid of who sent this 47 final IIntentReceiver resultTo; // who receives final result if non-null 56 IBinder receiver; // who is currently running, null if none.
|
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPickerItem.java | 51 protected boolean verifyDrawable(Drawable who) { 52 return super.verifyDrawable(who) || (who == mFrame) 53 || (who == mOverlay);
|
/frameworks/base/services/java/com/android/server/ |
DevicePolicyManagerService.java | 228 ActiveAdmin getActiveAdminUncheckedLocked(ComponentName who) { 229 ActiveAdmin admin = mAdminMap.get(who); 231 && who.getPackageName().equals(admin.info.getActivityInfo().packageName) 232 && who.getClassName().equals(admin.info.getActivityInfo().name)) { 238 ActiveAdmin getActiveAdminForCallerLocked(ComponentName who, int reqPolicy) 241 if (who != null) { 242 ActiveAdmin admin = mAdminMap.get(who); 244 throw new SecurityException("No active admin " + who); 247 throw new SecurityException("Admin " + who + " is not owned by uid " 607 public void setPasswordQuality(ComponentName who, int quality) [all...] |
/bionic/libc/unistd/ |
getpriority.c | 32 int getpriority(int which, int who) 34 int result = __getpriority(which, who);
|
/development/pdk/docs/source/ |
roles.jd | 10 <p>Anyone who is interested in exploring and contributing to Android can use the 19 external developers who are contributing to Android on their own behalf. 20 There is no distinction between Contributors who are employed by 21 Google, and those who are not: all engineers use the same git/gerrit tools, 44 "Approvers" are experienced members of the project who have demonstrated their 47 exclude a change. Project Leads (who are typically employed by Google) choose 48 the Approvers, sometimes promoting to this position Verifiers who have 54 repository, as individual .git files. Tech Leads are senior Contributors who
|
/packages/apps/IM/src/com/android/im/engine/ |
GroupMemberListener.java | 24 * @param contact the contact who has joined into this group. 31 * @param contact the contact who has left the group.
|
/external/grub/netboot/ |
tulip.txt | 7 who cantributed changes to support the TRENDnet TE100-PCIA NIC which 41 will help the next person who hacks the code or needs to support some 46 know how things go. I also would appreciate code review by people who
|
/external/icu4c/extra/uconv/ |
README | 14 API, and is maintained by Yves Arrouye <yves@realnames.com> who seems
|
/sdk/layoutopt/libs/uix/src/resources/rules/ |
NestedScrollingWidgets.rule | 7 // - The node has a descendant who is also a scrolling widget
|
/external/gtest/ |
CONTRIBUTORS | 1 # This file contains a list of people who've made non-trivial 3 # who commit code to the project are encouraged to add their names
|
/external/icu4c/samples/ufortune/resources/ |
root.txt | 98 "A bachelor is a selfish, undeserving guy who has cheated some woman out 102 "A banker is a fellow who lends you his umbrella when the sun is shining 119 "A bore is someone who persists in holding his own views after we have 125 "A candidate is a person who gets money from the rich and votes from the 128 "A celebrity is a person who is known for his well-knownness.", 165 "A consultant is a person who borrows your watch, tells you what time it 192 "A diplomat is a man who can convince his wife she'd look stout in a fur 195 "A diplomat is someone who can tell you to go to hell in such a way that 204 "A diva who specializes in risque arias is an off-coloratura soprano ...",
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 88 protected boolean verifyDrawable(Drawable who) { 89 return who == mBackground || super.verifyDrawable(who);
|