HomeSort by relevance Sort by last modified time
    Searched refs:dm (Results 1 - 25 of 242) sorted by null

1 2 3 4 5 6 7 8 910

  /external/ltp/testscripts/
ltpdmmapper.sh 74 dmsetup create dm-test-1 ltp-dev-mapper-table1
75 dmsetup create dm-test-2 ltp-dev-mapper-table2
76 dmsetup create dm-test-3 ltp-dev-mapper-table3
77 dmsetup create dm-test-4 ltp-dev-mapper-table4
81 dmsetup info dm-test-1
82 dmsetup info dm-test-2
83 dmsetup info dm-test-3
84 dmsetup info dm-test-4
88 dmsetup deps dm-test-1
89 dmsetup deps dm-test-
    [all...]
  /external/webrtc/talk/media/devices/
dummydevicemanager_unittest.cc 36 DummyDeviceManager dm; local
37 EXPECT_TRUE(dm.Init());
38 dm.Terminate();
43 DummyDeviceManager dm; local
44 int capabilities = dm.GetCapabilities();
51 DummyDeviceManager dm; local
52 EXPECT_TRUE(dm.Init());
54 EXPECT_TRUE(dm.GetAudioInputDevices(&audio_ins));
55 EXPECT_TRUE(dm.GetAudioOutputDevices(&audio_outs));
56 EXPECT_TRUE(dm.GetVideoCaptureDevices(&video_ins))
61 DummyDeviceManager dm; local
76 DummyDeviceManager dm; local
86 DummyDeviceManager dm; local
    [all...]
devicemanager_unittest.cc 116 scoped_ptr<DeviceManagerInterface> dm(DeviceManagerFactory::Create());
117 EXPECT_TRUE(dm->Init());
118 dm->Terminate();
124 scoped_ptr<DeviceManagerInterface> dm(DeviceManagerFactory::Create());
127 EXPECT_TRUE(dm->Init());
128 EXPECT_TRUE(dm->GetVideoCaptureDevices(&devices));
129 dm->Terminate();
135 EXPECT_TRUE(dm->Init());
136 dm->Terminate();
143 EXPECT_TRUE(dm->Init())
    [all...]
  /external/skia/tests/
DiscardableMemoryTest.cpp 18 SkDiscardableMemory* dm,
20 REPORTER_ASSERT(reporter, dm);
21 if (!dm) {
24 void* ptr = dm->data();
30 dm->unlock();
31 bool relockSuccess = dm->lock();
38 ptr = dm->data();
44 dm->unlock();
48 std::unique_ptr<SkDiscardableMemory> dm(SkDiscardableMemory::Create(kTestStringLength));
51 test_dm(reporter, dm.get(), false)
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
TypedValueTest.java 49 DisplayMetrics dm = new DisplayMetrics(); local
50 dm.density = 1.1f;
51 dm.heightPixels = 100;
52 dm.scaledDensity = 2.1f;
53 dm.xdpi = 200f;
54 dm.ydpi = 300f;
56 & TypedValue.COMPLEX_UNIT_MASK, TypedValue.complexToFloat(10), dm);
58 assertEquals(expected, TypedValue.complexToDimension(10, dm), 0.0f);
59 assertEquals((int)expected, TypedValue.complexToDimensionPixelOffset(10, dm));
94 DisplayMetrics dm = new DisplayMetrics() local
144 DisplayMetrics dm = new DisplayMetrics(); local
214 DisplayMetrics dm = new DisplayMetrics(); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
ccr.d 10 [ ]+4:[ ]+bff5[ ]+setf[ ]+cvznxi[be][dm]
11 [ ]+6:[ ]+fff5[ ]+clearf[ ]+cvznxi[be][dm]
14 [ ]+c:[ ]+b995[ ]+setf[ ]+cnx[dm]
15 [ ]+e:[ ]+f995[ ]+clearf[ ]+cnx[dm]
32 [ ]+30:[ ]+b085[ ]+setf[ ]+[dm]
33 [ ]+32:[ ]+f085[ ]+clearf[ ]+[dm]
50 [ ]+54:[ ]+f0f5[ ]+clearf[ ]+xi[be][dm]
51 [ ]+56:[ ]+b0f5[ ]+setf[ ]+xi[be][dm]
52 [ ]+58:[ ]+f0f5[ ]+clearf[ ]+xi[be][dm]
53 [ ]+5a:[ ]+b0f5[ ]+setf[ ]+xi[be][dm]
    [all...]
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 64 void removeFromPool(PoolDiscardableMemory* dm);
66 bool lock(PoolDiscardableMemory* dm);
68 void unlock(PoolDiscardableMemory* dm);
151 PoolDiscardableMemory* dm = cur; local
152 SkASSERT(dm->fPointer != nullptr);
153 dm->fPointer = nullptr;
154 SkASSERT(fUsed >= dm->fBytes);
155 fUsed -= dm->fBytes;
159 fList.remove(dm);
171 auto dm = skstd::make_unique<PoolDiscardableMemory>(sk_ref_sp(this), std::move(addr), bytes) local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
ModuleTest.java 59 public DataMap dm; field in class:ModuleTest.TestDataPair
61 public TestDataPair(TestData td, DataMap dm) {
63 this.dm = dm;
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
ModuleTest.java 58 public DataMap dm; field in class:ModuleTest.TestDataPair
60 public TestDataPair(TestData td, DataMap dm) {
62 this.dm = dm;
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
IntegratedDownloadsUiTest.java 43 DownloadManager dm = (DownloadManager) context.getSystemService( local
47 dm.enqueue(new Request(Uri.parse("http://hammychamp.toodles")));
55 DownloadManager dm = (DownloadManager) context.getSystemService( local
58 dm.enqueue(new Request(Uri.parse("http://www.google.com/hamfancy")));
  /frameworks/base/core/tests/coretests/src/android/view/
ScaleGestureDetectorTest.java 65 final DisplayMetrics dm = new DisplayMetrics(); local
68 wm.getDefaultDisplay().getMetrics(dm);
69 final int displayWidth = dm.widthPixels;
70 final int displayHeight = dm.heightPixels;
  /system/vold/
Devmapper.h 21 #include <linux/dm-ioctl.h>
  /external/skia/example/
SkiaSDLExample.cpp 151 SDL_DisplayMode dm; local
152 if (SDL_GetDesktopDisplayMode(0, &dm) != 0) {
158 SDL_WINDOWPOS_CENTERED, dm.w, dm.h, windowFlags);
181 glViewport(0, 0, dm.w, dm.h);
200 GrBackendRenderTarget target(dm.w, dm.h, kMsaaSampleCount, kStencilBits,
248 canvas->translate(dm.w / 2.0, dm.h / 2.0)
    [all...]
  /bionic/libc/kernel/uapi/linux/
dm-log-userspace.h 22 #include <linux/dm-ioctl.h>
  /development/ndk/platforms/android-21/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /external/kernel-headers/original/uapi/linux/
dm-log-userspace.h 11 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
16 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
49 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
74 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
93 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
112 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
131 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
150 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
168 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
186 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /external/skia/bin/
coverage 13 $0 dm --src tests
15 $0 dm --src gm skp
  /frameworks/base/services/core/java/com/android/server/wm/
Watermark.java 56 Watermark(Display display, DisplayMetrics dm, SurfaceSession session, String[] tokens) {
87 TypedValue.COMPLEX_UNIT_DIP, 20, dm);
98 TypedValue.COMPLEX_UNIT_PX, mTextWidth*2, dm);
100 TypedValue.COMPLEX_UNIT_PX, mTextHeight*3, dm);
102 TypedValue.COMPLEX_UNIT_PX, 0xb0000000, dm);
104 TypedValue.COMPLEX_UNIT_PX, 0x60ffffff, dm);
106 TypedValue.COMPLEX_UNIT_PX, 7, dm);
108 TypedValue.COMPLEX_UNIT_PX, 0, dm);
110 TypedValue.COMPLEX_UNIT_PX, 0, dm);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 10 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
15 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
48 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
68 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
87 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
106 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
125 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
144 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
162 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
180 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 10 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
15 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
48 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
73 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
92 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
111 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
130 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
149 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
167 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
185 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>

Completed in 1527 milliseconds

1 2 3 4 5 6 7 8 910