HomeSort by relevance Sort by last modified time
    Searched refs:select (Results 76 - 100 of 470) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_ComponentThread.c 58 #include <sys/select.h>
106 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
149 OMX_ERROR4(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: Error in Select\n", __LINE__);
155 "Error from Component Thread in select");
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_ComponentThread.c 75 #include <sys/select.h>
134 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
161 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
167 "Error from Component Thread in select");
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_CompThread.c 65 #include <sys/select.h>
132 status = select (fdmax + 1, &rfds, NULL, NULL, &tv);
155 OMX_ERROR4(pComponentPrivate->dbg, "Error in Select\n");
161 "Error from Component Thread in select");
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_ComponentThread.c 61 #include <sys/select.h>
120 status = select (fdmax+1, &rfds, NULL, NULL, &tv);
150 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
156 "Error from Component Thread in select");
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xos.h 82 * select.h for typedef of args to select, fd_set, may use SVR4 later
85 #include <sys/select.h>
242 /* Make sure we get 256 bit select masks */
244 #include <sys/select.h>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xos.h 73 * select.h for typedef of args to select, fd_set, may use SVR4 later
76 #include <sys/select.h>
233 /* Make sure we get 256 bit select masks */
235 #include <sys/select.h>
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xos.h 82 * select.h for typedef of args to select, fd_set, may use SVR4 later
85 #include <sys/select.h>
242 /* Make sure we get 256 bit select masks */
244 #include <sys/select.h>
  /device/htc/passion-common/libsensors/
SensorBase.cpp 23 #include <sys/select.h>
LightSensor.cpp 23 #include <sys/select.h>
ProximitySensor.cpp 23 #include <sys/select.h>
  /device/samsung/crespo/libsensors/
SensorBase.cpp 23 #include <sys/select.h>
LightSensor.cpp 23 #include <sys/select.h>
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 165 if (WebCore::HTMLSelectElement* select = core(self))
166 select->setSelectedIndexByUser(index, true, true);
  /external/webkit/WebCore/dom/
InputElement.h 59 virtual void select() = 0;
  /external/webkit/WebCore/html/
HTMLFormControlElement.h 166 void select();
  /external/webkit/WebCore/rendering/
RenderTextControl.h 47 void select();
  /libcore/luni/src/test/java/libcore/java/nio/
SelectorTest.java 74 if (selector.select() != 0) {
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 80 return select(methods, new TestMethodPredicate());
160 for (Class<?> testClass : select(allClasses,
167 private <T> List<T> select(Collection<T> items, Predicate<T> predicate) { method in class:TestGrouping
  /external/webkit/WebCore/inspector/front-end/
ScriptsPanel.js 55 this.filesSelectElement = document.createElement("select");
61 this.functionsSelectElement = document.createElement("select");
65 // FIXME: append the functions select element to the top status bar when it is implemented.
696 var select = this.filesSelectElement;
720 var insertionIndex = insertionIndexForObjectInListSortedByFunction(option, select.childNodes, optionCompare);
722 select.appendChild(option);
724 select.insertBefore(option, select.childNodes.item(insertionIndex));
730 if (select.options[select.selectedIndex] === option
    [all...]
AuditsPanel.js 162 resultTreeElement.select();
248 this.auditsItemTreeElement.select();
265 this.auditsItemTreeElement.select();
  /external/webkit/WebCore/css/
mediaControlsQuickTime.css 68 -webkit-user-select: none;
90 -webkit-user-select: none;
158 -webkit-user-select: none;
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 285 * @tests java.nio.channel.Selector#select()
289 notes = "Verifies select() method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys.",
290 method = "select",
301 * @tests java.nio.channel.Selector#select()
305 notes = "Verifies that ClosedSelectorException is thrown if select() method is called for closed Selector.",
306 method = "select",
314 * @tests java.nio.channel.Selector#select(long)
318 notes = "Verifies select(long) method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.OP_WRITE keys and different timeout's values.",
319 method = "select",
335 * @tests java.nio.channel.Selector#select(long
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 277 mFilterMethodCombo.select(0);
410 mValueCombo.select(valueDescriptor.valueIndex);
443 mSeriesCombo.select(selectionIndex + 1);
465 // select the current filter
466 mFilterCombo.select(mDescriptor.filterValueIndex + 1);
467 mFilterMethodCombo.select(getFilterMethodIndex(mDescriptor.filterCompareMethod));
616 mEventCombo.select(comboIndex);
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java 116 * writableFDs. This is used to interpret the results returned by select().
179 @Override public int select() throws IOException { method in class:SelectorImpl
183 @Override public int select(long timeout) throws IOException { method in class:SelectorImpl
220 success = Platform.getNetworkSystem().select(
251 * preparation for a call to {@code INetworkSystem#select()}. After they're
297 // select methods says that one select swallows all outstanding wakeups. We made this
  /bionic/libc/bionic/
system_properties.c 38 #include <sys/select.h>

Completed in 561 milliseconds

1 2 34 5 6 7 8 91011>>