/external/linux-tools-perf/ |
builtin-buildid-list.c | 19 static bool force; variable 31 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), 41 session = perf_session__new(input_name, O_RDONLY, force, false,
|
builtin-annotate.c | 41 static bool force, use_tui, use_stdio; variable 184 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops); 248 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
|
builtin-diff.c | 22 static bool force; variable 148 session[0] = perf_session__new(input_old, O_RDONLY, force, false, &event_ops); 149 session[1] = perf_session__new(input_new, O_RDONLY, force, false, &event_ops); 184 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
|
builtin-report.c | 46 static bool force, use_tui, use_stdio; variable 269 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops); 428 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
|
/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.
|
/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/chromium_org/third_party/WebKit/public/web/ |
WebTouchPoint.h | 47 , force(0) 68 float force; member in class:blink::WebTouchPoint
|
/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_org/third_party/WebKit/Source/platform/ |
PlatformTouchPoint.h | 58 float force() const { return m_force; } function in class:WebCore::PlatformTouchPoint
|
/external/e2fsprogs/misc/ |
e2undo.c | 123 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;
|
/libcore/luni/src/main/java/java/nio/ |
MappedByteBuffer.java | 102 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...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorInputAgent.cpp | 54 SyntheticInspectorTouchPoint(unsigned id, State state, const WebCore::IntPoint& screenPos, const WebCore::IntPoint& pos, int radiusX, int radiusY, double rotationAngle, double force) 63 m_force = force; 212 double rotationAngle, force; local 232 if (!pointObj->getNumber("force", &force)) 233 force = 1.0f; 267 SyntheticInspectorTouchPoint point(id++, convertedState, globalPoint, convertedPoint, radiusX, radiusY, rotationAngle, force);
|
/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:__anon24363 45 popt::option(force, "force", 'f', "force conversion, even if identical") 191 if (!force && current_abi == input_abi) {
|
/libcore/harmony-tests/src/test/java/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
|
/external/chromium_org/ui/aura/bench/ |
bench_main.cc | 331 bool force = command_line->HasSwitch("force-render-surface"); local 332 content_layer.SetForceRenderSurface(force);
|
/external/e2fsprogs/resize/ |
main.c | 156 int force = 0; local 198 force = 1; 348 if (!force && ((fs->super->s_state & EXT2_ERROR_FS) || 409 if (!force && new_size < min_size) { 440 if (!force && (new_size > max_size)) { 455 if (!force && ((fs->super->s_lastcheck < fs->super->s_mtime) ||
|
/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/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);
|
/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 | 47 int force = 0; variable
|
/system/vold/ |
CommandListener.cpp | 149 ((argc == 4 && strcmp(argv[3], "force")) && 151 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume unmount <path> [force|force_and_revert]", false); 155 bool force = false; local 157 if (argc >= 4 && !strcmp(argv[3], "force")) { 158 force = true; 160 force = true; 163 rc = vm->unmountVolume(argv[2], force, revert); 371 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: asec destroy <container-id> [force]", false); 374 bool force = false; local 375 if (argc > 3 && !strcmp(argv[3], "force")) { 393 bool force = false; local 477 bool force = false; local [all...] |
/external/chromium_org/cc/animation/ |
layer_animation_controller.cc | 732 bool force = type == ForceActivation; local 743 if (is_active_ && (!was_active || force)) 745 else if (!is_active_ && (was_active || force))
|