HomeSort by relevance Sort by last modified time
    Searched refs:force (Results 26 - 50 of 319) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/oprofile/daemon/
opd_stats.c 26 * do nothing if the value read == -1 except if force is non-zero
28 static void print_if(char const * fmt, char const * path, char const * filename, int force)
31 if (value != -1 || force)
  /external/webkit/Source/WebCore/platform/graphics/android/
BaseTileTexture.h 83 bool acquire(TextureOwner* owner, bool force = false);
90 bool setOwner(TextureOwner* owner, bool force = false);
  /build/tools/zipalign/
ZipAlign.cpp 98 * output file exists and "force" wasn't specified.
101 int alignment, bool force)
105 //printf("PROCESS: align=%d in='%s' out='%s' force=%d\n",
106 // alignment, inFileName, outFileName, force);
115 if (!force && access(outFileName, F_OK) == 0) {
197 bool force = false; local
220 force = true;
255 result = process(argv[1], argv[2], alignment, force);
  /external/chromium/chrome/browser/ui/views/
reload_button.h 36 // Ask for a specified button state. If |force| is true this will be applied
38 void ChangeMode(Mode mode, bool force);
reload_button.cc 35 void ReloadButton::ChangeMode(Mode mode, bool force) {
41 if (force || (!IsMouseHovered() && !testing_mouse_hovered_) ||
  /external/clang/test/SemaCXX/
linkage.cpp 61 void force() { test(A()); } function in namespace:test3
89 // Force the above function to be emitted by codegen.
  /external/webkit/Tools/Scripts/
svn-unapply 80 my $force = 0;
84 "force!" => \$force,
89 print STDERR basename($0) . " [-h|--help] [--force] patch1 [patch2 ...]\n";
106 my $preparedPatchHash = prepareParsedPatch($force, @diffHashRefs);
207 unapplyPatch($patch, $fullPath, ["--force"]) if $patch;
259 my $optionalArgs = {options => $options, ensureForce => $force, shouldReverse => 1};
  /frameworks/base/libs/hwui/
Layer.h 150 void setWrap(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false) {
151 texture.setWrap(wrapS, wrapT, bindTexture, force, renderTarget);
154 void setFilter(GLenum min, GLenum mag, bool bindTexture = false, bool force = false) {
155 texture.setFilter(min, mag,bindTexture, force, renderTarget);
  /frameworks/base/native/android/
storage_manager.cpp 135 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) {
138 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce);
182 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,
184 mgr->unmountObb(filename, force != 0, cb, data);
  /system/vold/
Volume.cpp 526 int Volume::doMoveMount(const char *src, const char *dst, bool force) {
542 if (force) {
560 int Volume::doUnmount(const char *path, bool force) {
564 SLOGD("Unmounting {%s}, force = %d", path, force);
575 if (force) {
594 int Volume::unmountVol(bool force, bool revert) {
610 if (doMoveMount(getMountpoint(), SEC_STGDIR, force)) {
623 if (doUnmount(Volume::SEC_STG_SECIMGDIR, force)) {
633 if (doUnmount(Volume::SEC_ASECDIR, force)) {
    [all...]
CommandListener.cpp 143 ((argc == 4 && strcmp(argv[3], "force")) &&
145 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume unmount <path> [force|force_and_revert]", false);
149 bool force = false; local
151 if (argc >= 4 && !strcmp(argv[3], "force")) {
152 force = true;
154 force = true;
157 rc = vm->unmountVolume(argv[2], force, revert);
315 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec destroy <container-id> [force]", false);
318 bool force = false; local
319 if (argc > 3 && !strcmp(argv[3], "force")) {
337 bool force = false; local
421 bool force = false; local
    [all...]
  /external/chromium/sdch/open-vcdiff/
autogen.sh 37 "$ACLOCAL" --force -I m4 --output=aclocal.m4.tmp
  /frameworks/base/core/java/android/os/
IPowerManager.aidl 34 void userActivityWithForce(long when, boolean noChangeLights, boolean force);
  /external/iproute2/ip/
ip.c 34 int force = 0; variable
43 " ip [ -force ] -batch filename\n"
129 if (!force)
208 } else if (matches(opt, "-force") == 0) {
209 ++force;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 119 public void setDisabledFlags(int disabledFlags, boolean force) {
120 if (!force && mDisabledFlags == disabledFlags) return;
137 public void setMenuVisibility(final boolean show, final boolean force) {
138 if (!force && mShowMenu == show) return;
149 public void setLowProfile(final boolean lightsOut, final boolean animate, final boolean force) {
150 if (!force && lightsOut == mLowProfile) return;
232 // force the low profile & disabled states into compliance
233 setLowProfile(mLowProfile, false, true /* force */);
234 setDisabledFlags(mDisabledFlags, true /* force */);
235 setMenuVisibility(mShowMenu, true /* force */);
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/toolbar/
toolbar_controller.h 135 // button state. |force| is set if the update is due to changing
138 - (void)setIsLoading:(BOOL)isLoading force:(BOOL)force;
  /external/dnsmasq/contrib/Suse/
rc.dnsmasq-suse 54 force-reload)
74 echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
SearchBaseUrlHelper.java 70 * (c) if the caller forces an update by setting the "force" parameter.
72 * @param force if true, then the URL is reset whether or not it has
75 public void maybeUpdateBaseUrlSetting(boolean force) {
79 if (force || lastUpdateTime == -1 ||
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothAdapter.java 141 void startScanning(boolean force) {
144 if (!force) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/color/
ColorEditor.java 87 initUiRootNode(false /*force*/);
96 protected void initUiRootNode(boolean force) {
98 if (mUiRootNode == null || force) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/
ResourcesEditor.java 117 initUiRootNode(false /*force*/);
144 * @param force if true, a new UiRootNode is recreated even if it already exists.
147 protected void initUiRootNode(boolean force) {
149 if (mUiResourcesNode == null || force) {
  /frameworks/base/core/java/android/os/storage/
IMountService.java 172 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption)
179 _data.writeInt((force ? 1 : 0));
281 public int destroySecureContainer(String id, boolean force) throws RemoteException {
288 _data.writeInt((force ? 1 : 0));
349 public int unmountSecureContainer(String id, boolean force) throws RemoteException {
356 _data.writeInt((force ? 1 : 0));
510 * Unmounts an Opaque Binary Blob (OBB). When the force flag is
516 public void unmountObb(String filename, boolean force, IObbActionListener token,
523 _data.writeInt((force ? 1 : 0));
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_model.h 62 // |manually_selected_match_|). If |force| is true then the selected line will
67 void SetSelectedLine(size_t line, bool reset_to_default, bool force);
  /external/chromium/chrome/browser/chromeos/frame/
dom_browser_view.cc 53 void DOMBrowserView::UpdateReloadStopState(bool is_loading, bool force) {}
dom_browser_view.h 38 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE;

Completed in 425 milliseconds

12 3 4 5 6 7 8 91011>>