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

1 2 3 4 5 6 7 8 910

  /external/mdnsresponder/mDNSPosix/
Makefile 278 @echo $+ " installed"
281 @echo $+ " installed"
284 @echo $+ " installed"
287 @echo $+ " installed"
290 @echo $+ " installed"
293 @echo $+ " installed"
295 # Note: If daemon already installed, we make sure it's stopped before overwriting it
312 # that the daemon is installed *before* we try to execute the command to start it.
  /frameworks/base/core/java/android/content/pm/
PackageUserState.java 30 public boolean installed; field in class:PackageUserState
40 installed = true;
46 installed = o.installed;
  /external/valgrind/main/none/tests/s390x/
stfle.stdout.exp 3 The z/Architecture architectural mode is installed and active
5 STFLE facility is installed
8 The z/Architecture architectural mode is installed and active
  /external/chromium_org/third_party/icu/source/common/
locavailable.cpp 132 UResourceBundle installed; local
138 ures_initStackObject(&installed);
140 ures_getByKey(indexLocale, _kIndexTag, &installed, &status);
143 localeCount = ures_getSize(&installed);
147 ures_resetIterator(&installed);
148 while(ures_hasNext(&installed)) {
149 ures_getNextString(&installed, NULL, (const char **)&temp[i++], &status);
166 ures_close(&installed);
  /external/icu4c/common/
locavailable.cpp 132 UResourceBundle installed; local
138 ures_initStackObject(&installed);
140 ures_getByKey(indexLocale, _kIndexTag, &installed, &status);
143 localeCount = ures_getSize(&installed);
147 ures_resetIterator(&installed);
148 while(ures_hasNext(&installed)) {
149 ures_getNextString(&installed, NULL, (const char **)&temp[i++], &status);
166 ures_close(&installed);
  /build/tools/
check_builds.sh 64 inputs="$inputs $TEST_BUILD_DIR/golden-$1/installed-files.txt"
65 inputs="$inputs $TEST_BUILD_DIR/dist-$1/installed-files.txt"
83 diff $TEST_BUILD_DIR/golden-$1/installed-files.txt $TEST_BUILD_DIR/dist-$1/installed-files.txt &> /dev/null
86 diff $TEST_BUILD_DIR/golden-$1/installed-files.txt $TEST_BUILD_DIR/dist-$1/installed-files.txt
  /external/elfutils/tests/
test-wrapper.sh 28 # use the installed libraries. So for local test runs we need to point
34 # $(srcdir)/test-wrapper.sh installed s,^,eu-, run-test.sh ...
36 if [ "$1" = installed ]; then
42 elfutils_testrun=installed
  /frameworks/base/core/java/android/net/http/
HttpResponseCache.java 163 * Returns the currently-installed {@code HttpResponseCache}, or null if
164 * there is no cache installed or it is not a {@code HttpResponseCache}.
167 ResponseCache installed = ResponseCache.getDefault(); local
168 if (installed instanceof com.android.okhttp.HttpResponseCache) {
170 (com.android.okhttp.HttpResponseCache) installed);
182 * @return the newly-installed cache
188 ResponseCache installed = ResponseCache.getDefault(); local
189 if (installed instanceof com.android.okhttp.HttpResponseCache) {
191 (com.android.okhttp.HttpResponseCache) installed;
192 // don't close and reopen if an equivalent cache is already installed
    [all...]
  /external/chromium_org/chrome/browser/nacl_host/
nacl_browser_delegate_impl.cc 63 const base::Callback<void(bool)>& installed) {
67 pci->RequestFirstInstall(installed);
69 installed.Run(false);
nacl_browser_delegate_impl.h 27 const base::Callback<void(bool)>& installed) OVERRIDE;
  /external/chromium_org/components/nacl/common/
nacl_browser_delegate.h 58 // Install PNaCl if this operation is supported. On success, the |installed|
60 // the |installed| callback should be called with false.
63 const base::Callback<void(bool)>& installed) = 0;
  /external/chromium_org/third_party/lcov/bin/
install.sh 56 echo WARNING: Skipping uninstall for $TARGET - not installed! >&2
  /external/compiler-rt/test/timing/
time 22 INSTALLED=/usr/local/lib/system/libcompiler_rt.a
31 if [ -f "$INSTALLED" ]; then
32 test $ARCH $FILE installed $INSTALLED
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
install_host.sh 31 echo Native messaging host $HOST_NAME has been installed.
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
list.py 8 print ' I: installed\n *: update available\n'
18 print '\nAll installed bundles are up-to-date.'
23 print '\nBundles installed locally that are not available remotely:'
30 installed = local_bundle is not None
44 'I' if installed else ' ',
  /external/chromium_org/chrome/test/mini_installer_test/
installer_test_util.cc 135 LOG(ERROR) << "No installed Chrome or Chrome Frame versions found.";
146 std::vector<installer_test::InstalledProduct> installed; local
147 if (GetInstalledProducts(&installed)) {
148 for (size_t i = 0; i < installed.size(); ++i) {
149 if ((installed[i].type & product) != 0) {
150 return installed[i].version;
224 std::vector<installer_test::InstalledProduct> installed; local
225 if (!GetInstalledProducts(&installed)) {
226 LOG(WARNING) << "No installed products to uninstall.";
230 for (size_t i = 0; i < installed.size(); ++i)
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageSettingBase.java 38 * incomplete installations. Say a package is being installed (the state is
80 /* package name of the app that installed this package */
213 modifyUserState(userId).installed = inst;
217 return readUserState(userId).installed;
222 if (readUserState(user).installed) {
229 int[] queryInstalledUsers(int[] users, boolean installed) {
232 if (getInstalled(user) == installed) {
239 if (getInstalled(user) == installed) {
271 void setUserState(int userId, int enabled, boolean installed, boolean stopped,
277 state.installed = installed
    [all...]
  /external/chromium_org/third_party/lcov-1.9/bin/
install.sh 59 echo WARNING: Skipping uninstall for $TARGET - not installed! >&2
  /external/clang/tools/driver/
Android.mk 100 # Make sure if clang (i.e. $(LOCAL_MODULE)) get installed,
101 # clang++ will get installed as well.
102 ALL_MODULES.$(LOCAL_MODULE).INSTALLED := \
103 $(ALL_MODULES.$(LOCAL_MODULE).INSTALLED) $(CLANG_CXX)
  /frameworks/base/core/tests/coretests/src/android/net/http/
HttpResponseCacheTest.java 50 HttpResponseCache installed = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); local
51 assertNotNull(installed);
52 assertSame(installed, ResponseCache.getDefault());
53 assertSame(installed, HttpResponseCache.getDefault());
  /external/srec/config/en.us/
config.mk 1 # Config files to be installed.
  /packages/apps/VoiceDialer/
Android.mk 16 # Install the srec data files if VoiceDialer.apk is installed to system image.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_scripts.py 73 installed = os.listdir(target)
75 self.assertTrue(name in installed)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_scripts.py 73 installed = os.listdir(target)
75 self.assertTrue(name in installed)
  /external/chromium_org/third_party/icu/source/config/
dist.mk 8 # This will only work if subversion is installed.
39 @echo "ERROR: 'dist' will not work unless the parent of the top_srcdir ( $(SVNTOP) ) is checked out from svn, and svn is installed."
59 @echo "svnversion of $(SVNTOP) is as follows (if this fails, make sure svn is installed..)"

Completed in 1787 milliseconds

1 2 3 4 5 6 7 8 910