HomeSort by relevance Sort by last modified time
    Searched defs:force (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/libcore/nio/src/main/java/java/nio/
MappedByteBuffer.java 103 public final MappedByteBuffer force() { method in class:MappedByteBuffer
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
ReadOnlyFileChannel.java 98 public final void force(boolean metadata) throws IOException { method in class:ReadOnlyFileChannel
FileChannelImpl.java 181 public void force(boolean metadata) throws IOException { method in class:FileChannelImpl
  /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);
  /dalvik/libcore/nio/src/main/java/java/nio/channels/
FileChannel.java 158 public abstract void force(boolean metadata) throws IOException; method in class:FileChannel
    [all...]
  /external/iproute2/ip/
ip.c 34 int force = 0; variable
43 " ip [ -force ] -batch filename\n"
125 if (!force)
204 } else if (matches(opt, "-force") == 0) {
205 ++force;
  /external/e2fsprogs/resize/
main.c 153 int force = 0; local
192 force = 1;
376 if (!force && (new_size > max_size)) {
391 if (!force && ((fs->super->s_lastcheck < fs->super->s_mtime) ||
  /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:__anon4043
45 popt::option(force, "force", 'f', "force conversion, even if identical")
191 if (!force && current_abi == input_abi) {
  /system/vold/
CommandListener.cpp 138 if (argc < 3 || argc > 4 || (argc == 4 && strcmp(argv[3], "force"))) {
139 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume unmount <path> [force]", false);
143 bool force = false; local
144 if (argc >= 4 && !strcmp(argv[3], "force")) {
145 force = true;
147 rc = vm->unmountVolume(argv[2], force);
338 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec destroy <container-id> [force]", false);
341 bool force = false; local
342 if (argc > 3 && !strcmp(argv[3], "force")) {
343 force = true
360 bool force = false; local
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
MappedByteBufferTest.java 84 * @tests {@link java.nio.MappedByteBuffer#force()}
89 method = "force",
99 mmbRead.force();
108 "Invoking force() should have no effect when this buffer was not mapped in read/write mode",
118 mmbReadWrite.force();
125 // Invoking force() will change the buffer
  /dalvik/libcore/luni/src/main/java/java/util/
ComparableTimSort.java 171 int force = nRemaining <= minRun ? nRemaining : minRun; local
172 binarySort(a, lo, lo + force, lo + runLen);
173 runLen = force;
    [all...]
TimSort.java 203 int force = nRemaining <= minRun ? nRemaining : minRun; local
204 binarySort(a, lo, lo + force, lo + runLen, c);
205 runLen = force;
    [all...]
  /external/e2fsprogs/misc/
dumpe2fs.c 411 int force = 0; local
435 force++;
463 if (force)
badblocks.c 67 static int force = 0; /* force check of mounted device */ variable
795 if (force) {
808 if (force)
876 force++;
mke2fs.c 76 int force; variable
1163 force++;
1251 if (!force) {
1273 if (!force)
1275 check_mount(device_name, force, _("filesystem"));
1327 } else if (!force && (fs_param.s_blocks_count > dev_size)) {
    [all...]
  /external/quake/quake/src/QW/client/
view.c 311 vid.recalc_refdef = 1; // force a surface cache flush
545 qboolean force; local
576 force = V_CheckGamma ();
577 if (!new && !force)
638 qboolean force; local
669 force = V_CheckGamma ();
670 if (!new && !force)
  /frameworks/base/core/java/android/text/
DynamicLayout.java 211 Object[] force = sp.getSpans(where, where + after, local
214 for (int i = 0; i < force.length; i++) {
215 int st = sp.getSpanStart(force[i]);
216 int en = sp.getSpanEnd(force[i]);
  /frameworks/base/libs/audioflinger/
AudioPolicyManagerBase.cpp 259 bool force = false; local
264 // force routing command to audio hardware when starting a call
266 force = true;
269 // force routing command to audio hardware when exiting a call
271 force = true;
291 // force routing command to audio hardware when ending call
310 setOutputDevice(mHardwareOutput, newDevice, force, delayMs);
802 // Force max volume if stream cannot be muted
    [all...]
  /external/openssl/ssl/
ssltest.c 398 int force=0; local
593 force = 1;
666 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
696 if (number < 50 && !force)
    [all...]
  /external/svox/pico/lib/
picospho.c 219 force, /* in forced state */ member in struct:spho_subobj
263 spho->force = 0;
580 /* for the time being, we force to use POS so we can transduce all fsts in a row without reconsulting the items */
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 247 * @tests java.nio.channels.FileChannel#force(boolean)
252 method = "force",
258 writeOnlyFileChannel.force(true);
266 writeOnlyFileChannel.force(false);
275 * @tests java.nio.channels.FileChannel#force(boolean)
280 method = "force",
286 writeOnlyFileChannel.force(true);
293 writeOnlyFileChannel.force(false);
301 * @tests java.nio.channels.FileChannel#force(boolean)
306 method = "force",
4640 public void force(boolean arg0) throws IOException { method in class:FileChannelTest.MockFileChannel
    [all...]
  /external/dnsmasq/src/
rfc2131.c 293 int force = 0; local
298 force = 1;
303 force = 1;
329 if (context_new || force)
511 /* Always force update, since the client has no way to do it itself. */
1849 int force = 0; local
    [all...]
  /frameworks/base/services/java/com/android/server/
MountService.java 142 boolean force; field in class:MountService.UnmountCallBack
144 UnmountCallBack(String path, boolean force) {
147 this.force = force;
159 UmsEnableCallBack(String path, String method, boolean force) {
160 super(path, force);
228 if (!ucb.force) {
718 * If force is not set, we do not unmount if there are
720 * If force is set, all the processes holding references need to be
726 private int doUnmountVolume(String path, boolean force) {
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.c 73 int force, int isShrink, int shadows);
1875 int force = 0; local
    [all...]

Completed in 2703 milliseconds

1 2