HomeSort by relevance Sort by last modified time
    Searched refs:active (Results 151 - 175 of 558) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/valgrind/main/drd/tests/
bar_bad.stderr.exp 28 Destruction of a barrier with active waiters: barrier 0x........
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 90 final boolean active = reader.nextInt() != 0;
98 // fold in active numbers, but only when active
99 if (active) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataCallResponse.java 43 public int active = 0; field in class:DataCallResponse
82 .append(" active=").append(active)
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApEnabler.java 63 ArrayList<String> active = intent.getStringArrayListExtra(
67 updateTetherState(available.toArray(), active.toArray(), errored.toArray());
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysevents.c 91 void (*WIN_Activate)(_THIS, BOOL active, BOOL iconic);
267 BOOL active, minimized; local
271 active = (LOWORD(wParam) != WA_INACTIVE) && !minimized;
272 if ( active ) {
326 WIN_Activate(this, active, minimized);
  /external/webkit/Source/WebCore/page/
FocusController.cpp 409 void FocusController::setActive(bool active)
411 if (m_isActive == active)
414 m_isActive = active;
425 if (!active)
436 dispatchEventsOnWindowAndFocusedNode(m_focusedFrame->document(), active);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java     [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_av_co.c 130 BOOLEAN active; member in struct:__anon2870
170 return bta_av_co_cb.cp.active;
466 bta_av_co_cb.cp.active = TRUE;
473 bta_av_co_cb.cp.active = FALSE;
582 else if ((num_protect == 1) && (!bta_av_co_cb.cp.active))
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 641 boolean active = true;
652 active = fillBuffer(stream, buffer);
659 if (!active && stream.isOpen())
662 return active;
666 boolean active = true;
668 active = fillBuffer(stream, id);
673 return active;
    [all...]
  /external/quake/quake/src/QW/server/
sv_main.c 1275 svs.stats.active += end-start;
1278 svs.stats.latched_active = svs.stats.active;
1281 svs.stats.active = 0;
1398 int active; local
1407 // count active users
1409 active = 0;
1413 active++;
1417 svs.heartbeat_sequence, active);
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 112 translated[attributeIndex].active = (program->getSemanticIndex(attributeIndex) != -1);
120 if (translated[i].active && attribs[i].mArrayEnabled && (buffer || attribs[i].mPointer))
144 if (translated[i].active && attribs[i].mArrayEnabled && buffer)
154 if (translated[j].active && attribs[j].mArrayEnabled && attribs[j].mBoundBuffer.get() == buffer)
178 if (translated[i].active && attribs[i].mArrayEnabled && (buffer || attribs[i].mPointer))
193 if (translated[i].active)
517 if (attributes[i].active)
  /external/libppp/src/
mp.c 301 if (mp->active) {
372 mp->active = 1;
383 if (mp->active) {
403 mp->active = 0;
616 if (!bundle->ncp.mp.active)
829 prompt_Printf(arg->prompt, "Multilink is %sactive\n", mp->active ? "" : "in");
830 if (mp->active) {
858 if (mp->active) {
869 if (mp->active) {
    [all...]
prompt.c 140 if (!p->active)
382 if (p && p->active) {
394 if (p && p->active) {
  /hardware/qcom/media/mm-video/vidc/vdec/src/
h264_utils.cpp 469 if (!active)
472 active = true;
479 if (active)
482 active = false;
500 active = false;
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
user_controller.cc 181 // controller will not get notified about the active window change.
288 void UserController::OnWidgetActivated(bool active) {
289 is_user_selected_ = active;
290 if (active) {
  /external/chromium/chrome/browser/metrics/
thread_watcher_unittest.cc 298 EXPECT_FALSE(io_watcher_->active());
305 EXPECT_FALSE(webkit_watcher_->active());
326 EXPECT_TRUE(io_watcher_->active());
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 644 void EditorClientQt::setInputMethodState(bool active)
670 active = true;
681 webPageClient->setInputMethodEnabled(active);
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 136 atomic_t active; member in struct:mddev_s
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 225 int active = 0; local
228 active = Thread.activeCount();
230 assertTrue("Incorrect activeCount for current group: " + active, active > 1);
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 127 .edit-bar > .pin:active {
139 .pinned .edit-bar > .pin:active {
151 .edit-bar > .remove:active {
  /external/chromium/chrome/browser/resources/options/
sync_setup_overlay.css 72 #sync-setup-overlay * a:active {
299 .sync-label-active {
  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model_unittest.cc 15 // 'active=X anchor=X selection=X X X...'.
17 std::string result = "active=" + base::IntToString(model.active()) +
32 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
39 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
47 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
52 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model));
59 EXPECT_EQ("active=1 anchor=1 selection=1", StateAsString(model));
64 EXPECT_EQ("active=-1 anchor=-1 selection=", StateAsString(model));
70 EXPECT_EQ("active=2 anchor=2 selection=2", StateAsString(model))
    [all...]
  /external/freetype/src/truetype/
ttobjs.h 145 /* There can only be 3 active code ranges at once: */
180 FT_Bool active; /* is it active? */ member in struct:TT_DefRecord_
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_events.h 229 SDL_ActiveEvent active; member in union:SDL_Event
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 80 printf( "app %s ", event->active.gain ? "gained" : "lost" );
81 if ( event->active.state & SDL_APPACTIVE ) {
82 printf( "active " );
83 } else if ( event->active.state & SDL_APPMOUSEFOCUS ) {
85 } else if ( event->active.state & SDL_APPINPUTFOCUS ) {

Completed in 1861 milliseconds

1 2 3 4 5 67 8 91011>>