HomeSort by relevance Sort by last modified time
    Searched refs:who (Results 101 - 125 of 735) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython2/Lib/test/
test_string.py 241 s = Template('$who likes to eat a bag of $what worth $$100')
242 self.assertEqual(s.substitute(dict(who='tim', what='ham')),
244 self.assertRaises(KeyError, s.substitute, dict(who='tim'))
248 s = Template('$who likes ${what} for ${meal}')
249 d = dict(who='tim', what='ham', meal='dinner')
252 dict(who='tim', what='ham'))
256 s = Template('$who likes to eat a bag of $$what worth $$100')
257 eq(s.substitute(dict(who='tim', what='ham')),
259 s = Template('$who likes $$')
260 eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $'
    [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java     [all...]
  /external/iproute2/ip/
ipmonitor.c 57 static int accept_msg(const struct sockaddr_nl *who,
78 print_mroute(who, n, arg);
82 print_route(who, n, arg);
88 ll_remember_index(who, n, NULL);
90 print_linkinfo(who, n, arg);
95 print_addrinfo(who, n, arg);
100 print_addrlabel(who, n, arg);
113 print_neigh(who, n, arg);
118 print_prefix(who, n, arg);
123 print_rule(who, n, arg)
    [all...]
xfrm_monitor.c 46 static int xfrm_acquire_print(const struct sockaddr_nl *who,
107 static int xfrm_state_flush_print(const struct sockaddr_nl *who,
137 static int xfrm_policy_flush_print(const struct sockaddr_nl *who,
175 static int xfrm_report_print(const struct sockaddr_nl *who,
241 static int xfrm_ae_print(const struct sockaddr_nl *who,
272 static int xfrm_mapping_print(const struct sockaddr_nl *who,
292 static int xfrm_accept_msg(const struct sockaddr_nl *who,
313 xfrm_state_print(who, n, arg);
319 xfrm_policy_print(who, n, arg);
322 xfrm_acquire_print(who, n, arg)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
7-1.c 54 void read_catalog(nl_catd cat, char *who)
61 output("Reading the message catalog from %s...\n", who);
78 output("Message catalog read successfully in %s\n", who);
  /external/iproute2/bridge/
monitor.c 38 static int accept_msg(const struct sockaddr_nl *who,
53 return print_linkinfo(who, n, arg);
59 return print_fdb(who, n, arg);
65 return print_mdb(who, n, arg);
  /external/valgrind/include/
pub_tool_mallocfree.h 52 extern void VG_(out_of_memory_NORETURN) ( const HChar* who, SizeT szB );
  /frameworks/av/media/libmedia/include/media/
IMediaDeathNotifier.h 48 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
AWakeLock.h 50 virtual void binderDied(const wp<IBinder> &who);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
resource.h 76 int getrusage(struct task_struct *p, int who, struct rusage *ru);
  /cts/tests/tests/widget/src/android/widget/cts/
MockTextView.java 111 public boolean verifyDrawable(Drawable who) {
112 return super.verifyDrawable(who);
  /external/strace/tests/
getrusage.c 45 invoke_print(int who, const char *who_str, struct rusage *usage)
47 int rc = syscall(__NR_getrusage, who, usage);
  /external/strace/tests-m32/
getrusage.c 45 invoke_print(int who, const char *who_str, struct rusage *usage)
47 int rc = syscall(__NR_getrusage, who, usage);
  /external/strace/tests-mx32/
getrusage.c 45 invoke_print(int who, const char *who_str, struct rusage *usage)
47 int rc = syscall(__NR_getrusage, who, usage);
  /hardware/qcom/gps/msm8998/android/
GnssMeasurement.cpp 34 uint64_t cookie, const wp<IBase>& who) {
35 LOC_LOGE("%s] service died. cookie: %llu, who: %p",
36 __FUNCTION__, static_cast<unsigned long long>(cookie), &who);
GnssNi.cpp 33 void GnssNi::GnssNiDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who) {
34 LOC_LOGE("%s] service died. cookie: %llu, who: %p",
35 __FUNCTION__, static_cast<unsigned long long>(cookie), &who);
  /hardware/qcom/gps/sdm845/android/
GnssMeasurement.cpp 34 uint64_t cookie, const wp<IBase>& who) {
35 LOC_LOGE("%s] service died. cookie: %llu, who: %p",
36 __FUNCTION__, static_cast<unsigned long long>(cookie), &who);
GnssNi.cpp 33 void GnssNi::GnssNiDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who) {
34 LOC_LOGE("%s] service died. cookie: %llu, who: %p",
35 __FUNCTION__, static_cast<unsigned long long>(cookie), &who);
  /system/hwservicemanager/
ServiceManager.cpp 51 void ServiceManager::serviceDied(uint64_t cookie, const wp<IBase>& who) {
54 removeService(who);
57 removePackageListener(who);
60 removeServiceListener(who);
134 bool ServiceManager::PackageInterfaceMap::removePackageListener(const wp<IBase>& who) {
140 if (interfacesEqual(*it, who.promote())) {
151 bool ServiceManager::PackageInterfaceMap::removeServiceListener(const wp<IBase>& who) {
158 found |= service->removeListener(who);
466 bool ServiceManager::removeService(const wp<IBase>& who) {
475 if (interfacesEqual(service->getService(), who.promote()))
    [all...]
  /frameworks/base/core/java/android/app/
FragmentHostCallback.java 248 void inactivateFragment(String who) {
249 //Log.v(TAG, "invalidateSupportFragment: who=" + who);
251 LoaderManagerImpl lm = (LoaderManagerImpl) mAllLoaderManagers.get(who);
254 mAllLoaderManagers.remove(who);
321 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) {
325 LoaderManagerImpl lm = (LoaderManagerImpl) mAllLoaderManagers.get(who);
327 lm = new LoaderManagerImpl(who, this, started);
328 mAllLoaderManagers.put(who, lm);
Instrumentation.java 673 final boolean match(Context who,
681 && mWhich.match(who.getContentResolver(), intent,
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentHostCallback.java 218 void inactivateFragment(String who) {
219 //Log.v(TAG, "invalidateSupportFragment: who=" + who);
221 LoaderManagerImpl lm = (LoaderManagerImpl) mAllLoaderManagers.get(who);
224 mAllLoaderManagers.remove(who);
303 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) {
307 LoaderManagerImpl lm = (LoaderManagerImpl) mAllLoaderManagers.get(who);
309 lm = new LoaderManagerImpl(who, this, started);
310 mAllLoaderManagers.put(who, lm);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationBackgroundView.java 58 protected boolean verifyDrawable(Drawable who) {
59 return super.verifyDrawable(who) || who == mBackground;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
NonOverlappingLinearLayoutWithForeground.java 114 protected boolean verifyDrawable(Drawable who) {
115 return super.verifyDrawable(who) || (who == mForeground);
  /external/libnl/include/netlink/genl/
mngt.h 40 struct sockaddr_nl * who; member in struct:genl_info

Completed in 557 milliseconds

1 2 3 45 6 7 8 91011>>