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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
macro.s 20 force .macro x label
27 force
  /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/ltp/testcases/network/multicast/mc_gethost/
mc_gethost.c 34 int force = 0; local
60 force++;
79 if (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);
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileDispatcher.java 39 abstract int force(FileDescriptor fd, boolean metaData) throws IOException; method in class:FileDispatcher
FileDispatcherImpl.java 92 int force(FileDescriptor fd, boolean metaData) throws IOException { method in class:FileDispatcherImpl
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ThemeStyleSet.java 18 if (overlayedAttribute != null && (attribute == null || overlayedStyle.force)) {
26 public void apply(Style style, boolean force) {
27 OverlayedStyle styleToAdd = new OverlayedStyle(style, force);
54 boolean force; field in class:ThemeStyleSet.OverlayedStyle
56 OverlayedStyle(Style style, boolean force) {
58 this.force = force;
77 return style.toString() + (force ? " (forced)" : "");
  /libcore/ojluni/src/main/java/java/nio/channels/
AsynchronousFileChannel.java 63 * <li><p> Updates made to a file may be {@link #force <i>forced
371 * <p> This method is only guaranteed to force changes that were made to
375 * If {@code true} then this method is required to force changes
377 * storage; otherwise, it need only force content changes to be
386 public abstract void force(boolean metaData) throws IOException; method in class:AsynchronousFileChannel
    [all...]
FileChannel.java 69 * <li><p> Updates made to a file may be {@link #force <i>forced
534 * <p> This method is only guaranteed to force changes that were made to
536 * may not force changes that were made by modifying the content of a
539 * MappedByteBuffer#force force} method of the mapped byte buffer will
540 * force changes made to the buffer's content to be written. </p>
543 * If <tt>true</tt> then this method is required to force changes
545 * storage; otherwise, it need only force content changes to be
554 public abstract void force(boolean metaData) throws IOException; method in class:FileChannel
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyTIL.cpp 48 SExpr* Future::force() { function in class:Future
  /external/elfutils/libelf/
elf_compress_gnu.c 49 bool force = (flags & ELF_CHF_FORCE) != 0; local
104 &new_size, force);
elf_compress.c 68 size). Returns (void *) -1 when FORCE is false and the compressed
74 size_t *new_size, bool force)
91 if (next_data == NULL && !force
177 if (!force && flush == Z_FINISH && used >= *orig_size)
334 bool force = (flags & ELF_CHF_FORCE) != 0; local
395 &new_size, force);
  /external/iproute2/bridge/
bridge.c 28 int force; variable
37 " bridge [ -force ] -batch filename\n"
111 if (!force)
174 } else if (matches(opt, "-force") == 0) {
175 ++force;
  /external/rmi4utils/rmi4update/
main.cpp 44 fprintf(stdout, "\t-f, --force\tForce updating firmware even it the image provided is older\n\t\t\tthen the current firmware on the device.\n");
57 int UpdateDevice(FirmwareImage & image, bool force, bool performLockdown, const char * deviceFile)
67 rc = update.UpdateFirmware(force, performLockdown);
107 bool force = false; local
110 {"force", 0, NULL, 'f'},
128 force = true;
178 rc = UpdateDevice(image, force, performLockdown, deviceName);
194 rc = UpdateDevice(image, force, performLockdown, deviceFile);
  /external/syslinux/libinstaller/
syslxopt.h 17 int force; member in struct:sys_options
  /libcore/ojluni/src/main/java/java/nio/
MappedByteBuffer.java 206 public final MappedByteBuffer force() { method in class:MappedByteBuffer
  /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;
  /prebuilts/go/darwin-x86/src/cmd/fix/
main.go 33 var forceRewrites = flag.String("force", "",
34 "force these fixes to run even if the code looks updated")
36 var allowed, force map[string]bool var
44 fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
75 force = make(map[string]bool)
77 force[f] = true
147 if fix.disabled && !force[fix.name] {
  /prebuilts/go/linux-x86/src/cmd/fix/
main.go 33 var forceRewrites = flag.String("force", "",
34 "force these fixes to run even if the code looks updated")
36 var allowed, force map[string]bool var
44 fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
75 force = make(map[string]bool)
77 force[f] = true
147 if fix.disabled && !force[fix.name] {
  /system/extras/ext4_utils/
ext4_utils.c 39 int force = 0; variable
  /build/make/tools/zipalign/
ZipAlign.cpp 127 * output file exists and "force" wasn't specified.
130 int alignment, bool force, bool zopfli, bool pageAlignSharedLibs)
134 //printf("PROCESS: align=%d in='%s' out='%s' force=%d\n",
135 // alignment, inFileName, outFileName, force);
144 if (!force && access(outFileName, F_OK) == 0) {
228 bool force = false; local
253 force = true;
294 result = process(argv[1], argv[2], alignment, force, zopfli, pageAlignSharedLibs);
  /external/dtc/
dtc.c 78 {"force", no_argument, NULL, 'f'},
175 bool force = false, sort = false; local
221 force = true;
322 process_checks(force, dti);
  /external/iproute2/ip/
ip.c 38 int force; variable
51 " ip [ -force ] -batch filename\n"
161 if (!force)
255 } else if (matches(opt, "-force") == 0) {
256 ++force;
  /external/iproute2/tc/
tc.c 43 int force; variable
218 " tc [-force]\n"
220 " tc [-force] -batch filename\n"
286 if (!force)
328 } else if (matches(argv[1], "-force") == 0) {
329 ++force;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarTransitions.java 87 applyLightsOut(false /*animate*/, true /*force*/);
110 applyLightsOut(animate, false /*force*/);
113 private void applyLightsOut(boolean animate, boolean force) {
115 applyLightsOut(isLightsOut(getMode()), animate, force); local
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) {
119 if (!force && lightsOut == mLightsOut) return;

Completed in 1242 milliseconds

1 2 3 4 5 6 7 8 91011>>