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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
linkage.cpp 63 void force() { test(A()); } function in namespace:test3
91 // Force the above function to be emitted by codegen.
  /external/linux-tools-perf/src/tools/perf/
builtin-buildid-list.c 52 static int perf_session__list_build_ids(bool force, bool with_hits)
63 session = perf_session__new(input_name, O_RDONLY, force, false,
85 bool force = false; local
89 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
105 return perf_session__list_build_ids(force, with_hits);
builtin-buildid-cache.c 83 static int build_id_cache__fprintf_missing(const char *filename, bool force, FILE *fp)
86 force, false, NULL);
128 bool force = false; local
142 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
200 ret = build_id_cache__fprintf_missing(missing_filename, force, stdout);
builtin-annotate.c 37 bool force, use_tui, use_stdio, use_gtk; member in struct:perf_annotate
193 ann->force, false, &ann->tool);
295 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
  /external/lldb/source/Plugins/Process/mach-core/
ThreadMachCore.cpp 64 // Invalidate all registers in our register context. We don't set "force" to
72 const bool force = false; local
73 GetRegisterContext()->InvalidateIfNeeded (force);
  /hardware/qcom/audio/legacy/alsa_sound/
AudioPolicyManagerALSA.cpp 74 bool force = false; local
79 // force routing command to audio hardware when starting a call
81 force = true;
84 // force routing command to audio hardware when exiting a call
86 force = true;
89 // force routing command to audio hardware when switching between telephony and VoIP
91 force = true;
102 // force routing command to audio hardware when ending call
144 setOutputDevice(mPrimaryOutput, newDevice, force, delayMs);
  /external/clang/lib/Analysis/
ThreadSafetyTIL.cpp 48 SExpr* Future::force() { function in class:Future
  /external/e2fsprogs/misc/
e2undo.c 122 int c,force = 0; local
145 force = 1;
187 if (!force && check_filesystem(tdb, channel)) {
  /external/iproute2/ip/
ip.c 34 int force = 0; variable
45 " ip [ -force ] -batch filename\n"
136 if (!force)
221 } else if (matches(opt, "-force") == 0) {
222 ++force;
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ThreadKDP.cpp 72 // Invalidate all registers in our register context. We don't set "force" to
80 const bool force = false; local
83 reg_ctx_sp->InvalidateIfNeeded (force);
  /external/lldb/source/Plugins/Process/gdb-remote/
ThreadGDBRemote.cpp 126 // Invalidate all registers in our register context. We don't set "force" to
134 const bool force = false; local
135 GetRegisterContext()->InvalidateIfNeeded (force);
  /external/selinux/policycoreutils/setfiles/
restore.h 37 int force; member in struct:restore_opts
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 104 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...]
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
DampedSpring.java 21 * value, and the current velocity and applies both a directional force and a damping force to the
93 * and applies velocity, acceleration, and a damping force to give a continuous,
103 // If the dts > 1, and the velocity is zero, the force will exceed the
114 float force = delta - 2.0f * mVelocity; local
116 mVelocity += force * dts;
  /build/tools/zipalign/
ZipAlign.cpp 126 * output file exists and "force" wasn't specified.
129 int alignment, bool force, bool zopfli, bool pageAlignSharedLibs)
133 //printf("PROCESS: align=%d in='%s' out='%s' force=%d\n",
134 // alignment, inFileName, outFileName, force);
143 if (!force && access(outFileName, F_OK) == 0) {
227 bool force = false; local
252 force = true;
293 result = process(argv[1], argv[2], alignment, force, zopfli, pageAlignSharedLibs);
  /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;
  /frameworks/base/libs/hwui/renderstate/
RenderState.cpp 262 const bool force = meshState().bindMeshBufferInternal(vertices.bufferObject) local
264 meshState().bindPositionVertexPointer(force, vertices.position, vertices.stride);
283 meshState().bindTexCoordsVertexPointer(force, vertices.texCoord, vertices.stride);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarTransitions.java 46 applyMode(getMode(), false /*animate*/, true /*force*/);
52 applyMode(newMode, animate, false /*force*/);
55 private void applyMode(int mode, boolean animate, boolean force) {
58 applyLightsOut(isLightsOut(mode), animate, force); local
61 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) {
62 if (!force && lightsOut == mLightsOut) return;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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
  /external/e2fsprogs/resize/
main.c 150 static void bigalloc_check(ext2_filsys fs, int force)
152 if (!force && EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
156 "your own risk! Use the force option "
169 int force = 0; local
208 force = 1;
334 if (!force && ((fs->super->s_state & EXT2_ERROR_FS) ||
399 if (!force && new_size < min_size) {
430 if (!force && (new_size > max_size)) {
443 bigalloc_check(fs, force);
446 if (!force && ((fs->super->s_lastcheck < fs->super->s_mtime) |
    [all...]
  /external/liblzf/
lzf.c 63 static int force = 0; variable
72 {"force", 0, 0, 'f'},
82 "-f --force force overwrite of output file\n"
90 "-f force overwrite of output file\n"
320 if (force)
488 force = 1;
510 if (!force)
514 fprintf (stderr, "%s: compressed data not read from a terminal. Use -f to force decompression.\n", imagename);
519 fprintf (stderr, "%s: compressed data not written to a terminal. Use -f to force compression.\n", imagename)
    [all...]
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 191 void force(int rx, unsigned domain);
289 /// Force register rx into domain.
290 void ExeDepsFix::force(int rx, unsigned domain) { function in class:__anon14728::ExeDepsFix
300 // force the new value into domain. This costs a domain crossing.
415 // We are already collapsed, but predecessor is not. Force it.
426 force(rx, pdv->getFirstDomain());
590 force(rx, domain);
594 // Kill all defs and force them.
600 force(rx, domain);
640 // If the collapsed operands force a single domain, propagate the collapse
    [all...]
  /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...]
  /system/extras/ext4_utils/
ext4_utils.c 48 int force = 0; variable

Completed in 872 milliseconds

1 2 3 4 5 6 7 8 91011>>