HomeSort by relevance Sort by last modified time
    Searched refs:active (Results 176 - 200 of 1224) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/test/MC/ARM/
arm-trustzone.s 9 @ active and that it rejects them when this feature is not enabled
  /external/ltp/testcases/lib/
daemonlib.sh 72 systemctl is-active $1.service > /dev/null 2>&1
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query_hw.h 77 enum fd_render_stage active; member in struct:fd_hw_sample_provider
125 /* if active and not paused, the current sample period (not
  /external/python/cpython2/Lib/plat-irix5/
panel.py 256 a, down, active, up = pnl.dopanel()[:4]
259 if active:
260 active.activefunc(active)
  /external/python/cpython2/Lib/plat-irix6/
panel.py 256 a, down, active, up = pnl.dopanel()[:4]
259 if active:
260 active.activefunc(active)
  /external/swiftshader/tests/fuzzers/
VertexRoutineFuzzer.cpp 197 state.output[i].xWrite = bytecodeShader->getOutput(i, 0).active();
198 state.output[i].yWrite = bytecodeShader->getOutput(i, 1).active();
199 state.output[i].zWrite = bytecodeShader->getOutput(i, 2).active();
200 state.output[i].wWrite = bytecodeShader->getOutput(i, 3).active();
  /external/tensorflow/tensorflow/core/distributed_runtime/
session_mgr.cc 121 void SessionMgr::SetLogging(bool active) {
123 this->is_logging_active_ = active;
128 worker_cache->SetLogging(active);
137 worker_cache->SetLogging(active);
session_mgr.h 60 void SetLogging(bool active);
  /frameworks/av/include/soundtrigger/
SoundTrigger.h 44 static status_t setCaptureState(bool active);
  /frameworks/av/services/audioflinger/
MmapTracks.h 44 void appendDump(String8& result, bool active);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareNativeManager.java 193 mInterfaceDestroyedListener.active = false;
214 public boolean active = true; field in class:WifiAwareNativeManager.InterfaceDestroyedListener
219 Log.d(TAG, "Interface was destroyed: mWifiNanIface=" + mWifiNanIface + ", active="
220 + active);
222 if (active && mWifiNanIface != null) {
  /libcore/ojluni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 175 int active = 1; local
183 ++active;
185 else if (active == 0)
197 --active;
  /packages/services/Car/car-support-lib/src/android/support/car/
CarAppFocusManager.java 25 * Enables applications to set and listen for the current application focus (such as active
41 * @param active returns {@code true} if active
44 boolean active);
54 * For example, a navigation app running active navigation should stop navigation
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarNavigationManagerTest.java 70 public void onAppFocusChanged(int appType, boolean active) {
  /system/core/base/
scopeguard_test.cpp 45 EXPECT_FALSE(scopeguard.active());
  /test/vti/dashboard/src/main/webapp/css/
datepicker.css 45 .ui-datepicker td span.ui-state-active, .ui-datepicker td a.ui-state-active {
search_header.css 71 .search-bar .search-wrapper .input-field .filter-input:focus+label.active {
92 .search-bar-menu .ui-menu-item:active {
  /external/icu/icu4j/
stylesheet8.css 27 a:active {
103 .bar a, .bar a:link, .bar a:visited, .bar a:active {
181 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
392 .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
393 .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
    [all...]
  /external/subsampling-scale-image-view/docs/javadoc/
stylesheet.css 23 a:active {
99 .bar a, .bar a:link, .bar a:visited, .bar a:active {
177 .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
388 .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
389 .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
    [all...]
  /frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java 65 * 2) onRotateGraphicsStatsBuffer() is sent to all active processes
152 for (ActiveBuffer active : activeCopy) {
154 active.mCallback.onRotateGraphicsStatsBuffer();
157 active.mInfo.packageName, active.mPid), e);
442 HistoricalBuffer(ActiveBuffer active) throws IOException {
443 mInfo = active.mInfo;
445 active.mProcessBuffer.readBytes(mData, 0, 0, ASHMEM_SIZE);
  /external/libese/libese-teq1/
teq1.c 568 int active = 0; local
599 tx = &tx_frame[active];
616 ese_memset(&tx_frame[!active].header, 0, sizeof(tx_frame[!active].header));
618 result = teq1_rules(&state, tx, &rx_frame, &tx_frame[!active]);
637 tx_frame[!active].header.PCB = S(RESYNC, REQUEST);
639 active = !active;
640 tx = &tx_frame[active];
657 tx = &tx_frame[!active];
    [all...]
  /external/toybox/toys/posix/
find.c 201 int pcount = 0, print = 0, not = 0, active = !!new, test = active, recurse; local
244 // active: if 0 don't perform tests
249 int check = active && test;
261 // Save old "not" and "active" on toybuf stack.
263 // Note: test value should never change while !active
266 toybuf[pcount++] = not+(active<<1);
267 if (!check) active = 0;
273 // Pop active state, apply deferred not (which was only set if checking)
274 active = (toybuf[pcount]>>1)&1
    [all...]
  /external/clang/utils/ABITest/
Enumeration.py 201 active = range(len(bounds))
202 active.sort(key=lambda i: bounds[i])
204 for i,index in enumerate(active):
206 W = len(active) - i
214 return active[i+idelta],prevLevel+delta
  /external/e2fsprogs/lib/ext2fs/
dosio.c 50 static PARTITION *active = NULL; variable
224 /* Found it! Make it the active one */
225 active = partitions[i];
226 *channel = alloc_io_channel(active);
346 partitions[npart++] = active = part;
351 *channel = alloc_io_channel(active);
  /frameworks/native/opengl/libagl/
texture.cpp 110 c->rasterizer.procs.activeTexture(c, c->textures.active);
119 * If the active textures are EGLImage, they need to be locked before
165 c->rasterizer.procs.activeTexture(c, c->textures.active);
304 const int active = c->textures.active; local
305 const GLuint name = c->textures.tmu[active].name;
308 texture_unit_t& u(c->textures.tmu[active]);
326 // bind this texture to the current active texture unit
331 invalidate_texture(c, active);
346 // bind this texture to the current active texture uni
373 const int active = c->textures.active; local
609 const int active = c->textures.active; local
    [all...]

Completed in 1421 milliseconds

1 2 3 4 5 6 78 91011>>