/external/webkit/Tools/Scripts/ |
svn-apply | 92 my $force = 0; 98 "force!" => \$force 102 print STDERR basename($0) . " [-h|--help] [--force] [-m|--merge] [-r|--reviewer name] patch1 [patch2 ...]\n"; 127 my $preparedPatchHash = prepareParsedPatch($force, @diffHashRefs); 200 my $optionalArgs = {options => $options, ensureForce => $force}; 348 applyPatch($patch, $fullPath, ["--force"]) if $patch; 448 open SVN, "svn rm --force '$path' |" or die "svn rm --force '$path' failed!"; 462 system("git", "rm", "--force", "--ignore-unmatch", $path) == 0 or die "Failed to git rm --force --ignore-unmatch $path." [all...] |
/frameworks/base/media/libstagefright/include/ |
NuCachedSource2.h | 129 bool ignoreLowWaterThreshold = false, bool force = false);
|
/libcore/luni/src/main/java/java/nio/ |
MappedByteBuffer.java | 116 public final MappedByteBuffer force() { method in class:MappedByteBuffer
|
/libcore/luni/src/main/java/java/nio/channels/ |
FileChannel.java | 156 public abstract void force(boolean metadata) throws IOException; method in class:FileChannel [all...] |
/system/extras/ext4_utils/ |
make_ext4fs_main.c | 77 force = 1;
|
/external/e2fsprogs/misc/ |
e2undo.c | 123 int c,force = 0; local 145 force = 1; 187 if (!force && check_filesystem(tdb, channel)) {
|
util.c | 143 void check_mount(const char *device, int force, const char *type) 157 if (force > 2) { 169 if (force > 2) {
|
/external/iproute2/tc/ |
tc.c | 40 int force = 0; variable 213 " tc [-force]\n" 215 " tc [-force] -batch filename\n" 282 if (!force) 322 } else if (matches(argv[1], "-force") == 0) { 323 ++force;
|
/external/oprofile/libabi/ |
opimport.cpp | 37 bool force; member in namespace:__anon9116 45 popt::option(force, "force", 'f', "force conversion, even if identical") 191 if (!force && current_abi == input_abi) {
|
/external/grub/util/ |
grub-install.in | 70 --force-lba force GRUB to use LBA mode even for a buggy 246 --force-lba) 247 force_lba="--force-lba" ;;
|
/external/oprofile/ |
oprofile_android | 132 print " -f, --force : remove existing session directory before import" 314 force = False 318 'f', ['force']) 324 if o in ('-f', '--force'): 325 force = True 334 if not force: 336 print "* Use --force to remove and recreate the session directory."
|
/external/v8/test/mjsunit/ |
substr.js | 71 /x/.exec(x); // Try to force a flatten. 89 /x/.exec(x); // Try to force a flatten. 102 // Keep creating strings to to force allocation failure on substring creation.
|
keyed-call-generic.js | 56 // Use a non-symbol key to force inline cache to generic case. 90 // Use a non-symbol key to force inline cache to generic case.
|
/frameworks/base/libs/storage/ |
IMountService.cpp | 160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) 165 data.writeInt32(force ? 1 : 0); 310 int32_t unmountSecureContainer(const String16& id, const bool force) 315 data.writeInt32(force ? 1 : 0); 456 void unmountObb(const String16& filename, const bool force, 462 data.writeInt32(force ? 1 : 0);
|
/bootable/diskinstaller/ |
installer.c | 119 do_fsck(const char *dst, int force) 122 const char *opts = force ? "-fy" : "-y"; 125 LOGI("Running e2fsck... (force=%d) This MAY take a while.", force);
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioPolicyManagerBase.h | 256 // by current state (device connected, phone state, force use, a2dp output...) 265 void setOutputDevice(audio_io_handle_t output, uint32_t device, bool force = false, int delayMs = 0); 276 status_t checkAndSetVolume(int stream, int index, audio_io_handle_t output, uint32_t device, int delayMs = 0, bool force = false); 278 void applyStreamVolumes(audio_io_handle_t output, uint32_t device, int delayMs = 0, bool force = false); 303 // changed: connected device, phone state, force use... 313 // changed: connected device, phone state, force use, output start, output stop.. 318 // changed: connected device, phone state, force use...
|
/external/chromium/chrome/browser/ui/ |
browser_window.h | 154 virtual void UpdateReloadStopState(bool is_loading, bool force) = 0;
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_window_cocoa.h | 60 virtual void UpdateReloadStopState(bool is_loading, bool force);
|
/external/chromium/chrome/browser/ui/panels/ |
panel.h | 67 virtual void UpdateReloadStopState(bool is_loading, bool force);
|
/external/qemu/ |
blockdev.c | 515 static int eject_device(Monitor *mon, BlockDriverState *bs, int force) 517 if (!force) { 535 int force = qdict_get_try_bool(qdict, "force", 0); local 543 return eject_device(mon, bs, force);
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKPreferencesPrivate.h | 92 WK_EXPORT void WKPreferencesSetForceFTPDirectoryListings(WKPreferencesRef preferences, bool force);
|
/frameworks/base/core/java/android/text/ |
DynamicLayout.java | 230 Object[] force = sp.getSpans(where, where + after, local 233 for (int i = 0; i < force.length; i++) { 234 int st = sp.getSpanStart(force[i]); 235 int en = sp.getSpanEnd(force[i]);
|
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
AsecTests.java | 108 private int unmountContainer(String localId, boolean force) throws RemoteException { 113 return ms.unmountSecureContainer(fullId, force); 116 private int destroyContainer(String localId, boolean force) throws RemoteException { 121 return ms.destroySecureContainer(fullId, force);
|
/dalvik/ |
Android.mk | 55 # The "touch -c $(DX)" is a hack that we know will force
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/ |
MappedByteBufferTest.java | 124 * @tests {@link java.nio.MappedByteBuffer#force()} 133 mmbRead.force(); 142 "Invoking force() should have no effect when this buffer was not mapped in read/write mode", 152 mmbReadWrite.force(); 159 // Invoking force() will change the buffer
|