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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/progs/test_data/
test.icount 11 store 0 0
15 store 20001 0
21 # OK, now let's test fetch and store. We also test the boundary cases
25 store 1 1
27 store 1 2
29 store 1 3
31 store 1 1
33 store 1 0
36 store 20000 0
38 store 20000
    [all...]
  /external/selinux/libsemanage/src/
semanage.conf 23 # "direct" - libsemanage will write directly to a module store.
31 module-store = direct
  /system/core/libcutils/
threads.cpp 51 void* thread_store_get( thread_store_t* store )
53 if (!store->has_tls)
56 return pthread_getspecific( store->tls );
59 extern void thread_store_set( thread_store_t* store,
63 pthread_mutex_lock( &store->lock );
64 if (!store->has_tls) {
65 if (pthread_key_create( &store->tls, destroy) != 0) {
66 pthread_mutex_unlock(&store->lock);
69 store->has_tls = 1;
71 pthread_mutex_unlock( &store->lock )
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
MediaDeviceInfo.java 42 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
44 store.startArray("media_codec_info");
47 store.startGroup();
48 store.addResult("name", info.getName());
49 store.addResult("encoder", info.isEncoder());
51 store.startArray("supported_type");
54 store.startGroup();
55 store.addResult("type", type);
58 store.startArray("codec_profile_level");
60 store.startGroup()
    [all...]
VintfDeviceInfo.java 36 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
41 store.addResult("cpu_info", VintfRuntimeInfo.getCpuInfo());
42 store.addResult("os_name", VintfRuntimeInfo.getOsName());
43 store.addResult("node_name", VintfRuntimeInfo.getNodeName());
44 store.addResult("os_release", VintfRuntimeInfo.getOsRelease());
45 store.addResult("os_version", VintfRuntimeInfo.getOsVersion());
46 store.addResult("hardware_id", VintfRuntimeInfo.getHardwareId());
47 store.addResult("kernel_version", VintfRuntimeInfo.getKernelVersion());
48 store.addResult("sepolicy_version", VintfObject.getSepolicyVersion());
51 store.addListResult("hals", hals == nul
    [all...]
ConfigurationDeviceInfo.java 28 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
30 store.addResult("touchscreen", con.touchscreen);
31 store.addResult("navigation", con.navigation);
32 store.addResult("keyboard", con.keyboard);
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
SampleDeviceInfo.java 31 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
39 store.startGroup("foo");
40 store.addResult("foo_boolean", Boolean.TRUE);
43 store.startGroup("bar");
44 store.addListResult("bar_string", Arrays.asList(new String[] {
49 store.addArrayResult("bar_boolean", booleans);
50 store.addArrayResult("bar_double", doubles);
51 store.addArrayResult("bar_int", ints);
52 store.addArrayResult("bar_long", longs);
53 store.addArrayResult("bar_float", floats)
    [all...]
VulkanDeviceInfo.java 51 * allow array-of-array, we instead store formats as an array of uniform structs, So instead of
342 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
345 emitDeviceGroups(store, instance);
346 emitLayers(store, instance);
347 emitExtensions(store, instance);
348 emitDevices(store, instance);
355 private static void emitDeviceGroups(DeviceInfoStore store, JSONObject parent)
358 store.startArray(convertName(KEY_DEVICE_GROUPS));
361 store.startGroup();
363 emitLongArray(store, deviceGroup, KEY_DEVICES)
    [all...]
  /cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
TestDeviceInfo.java 39 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
42 store.addResult("test_boolean", true);
43 store.addResult("test_double", 1.23456789);
44 store.addResult("test_int", 123456789);
45 store.addResult("test_long", Long.MAX_VALUE);
46 store.addResult("test_string", "test string");
51 store.addListResult("test_strings", list);
54 store.startGroup("test_group");
55 store.addResult("test_boolean", false);
56 store.addResult("test_double", 9.87654321)
    [all...]
  /cts/hostsidetests/edi/src/android/edi/cts/
LibraryDeviceInfo.java 31 protected void collectDeviceInfo(HostInfoStore store) throws Exception {
35 collectSystemLibs(store);
36 collectVendorLibs(store);
37 collectFrameworkJars(store);
40 private void collectSystemLibs(HostInfoStore store) throws Exception {
41 store.startArray("lib");
42 collectFileDetails(store, "/system/lib", ".so");
43 store.endArray();
46 private void collectVendorLibs(HostInfoStore store) throws Exception {
47 store.startArray("vendor_lib")
    [all...]
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
InfoStoreTrojan.java 22 static int sizeOfPreLayout(ViewInfoStore store) {
23 return sizeOf(store, ViewInfoStore.InfoRecord.FLAG_PRE);
25 static int sizeOfPostLayout(ViewInfoStore store) {
26 return sizeOf(store, ViewInfoStore.InfoRecord.FLAG_POST);
28 static int sizeOf(ViewInfoStore store, int flags) {
30 final int size = store.mLayoutHolderMap.size();
32 ViewInfoStore.InfoRecord record = store.mLayoutHolderMap.valueAt(i);
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
DiskUsage.java 54 static void printFileStore(FileStore store) throws IOException {
55 long total = store.getTotalSpace() / K;
56 long used = (store.getTotalSpace() - store.getUnallocatedSpace()) / K;
57 long avail = store.getUsableSpace() / K;
59 String s = store.toString();
71 for (FileStore store: fs.getFileStores()) {
72 printFileStore(store);
76 FileStore store = Files.getFileStore(Paths.get(file)); local
77 printFileStore(store);
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
DiskUsage.java 54 static void printFileStore(FileStore store) throws IOException {
55 long total = store.getTotalSpace() / K;
56 long used = (store.getTotalSpace() - store.getUnallocatedSpace()) / K;
57 long avail = store.getUsableSpace() / K;
59 String s = store.toString();
71 for (FileStore store: fs.getFileStores()) {
72 printFileStore(store);
76 FileStore store = Files.getFileStore(Paths.get(file)); local
77 printFileStore(store);
    [all...]
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostDeviceInfo.java 29 protected void collectDeviceInfo(HostInfoStore store) throws Exception {
33 store.startGroup("product");
34 store.addResult("model", getProperty("ro.product.model"));
35 store.addResult("brand", getProperty("ro.product.brand"));
36 store.addResult("name", getProperty("ro.product.name"));
37 store.addResult("device", getProperty("ro.product.device"));
38 store.addResult("board", getProperty("ro.product.board"));
41 store.addListResult("abi", Arrays.asList(abi.split(",")));
42 store.endGroup(); // product
44 store.startGroup("version")
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/
SessionInfoStoreTest.java 31 private SessionInfoStore store; field in class:SessionInfoStoreTest
35 store = new SessionInfoStore();
40 assertEquals(Collections.emptyList(), store.getInfos());
41 assertTrue(store.isEmpty());
46 store.visitSessionInfo(new SessionInfo("A", 123, 456));
47 assertFalse(store.isEmpty());
53 store.visitSessionInfo(a);
55 store.visitSessionInfo(b);
57 store.visitSessionInfo(c);
58 assertEquals(Arrays.asList(b, a, c), store.getInfos())
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
55 if (!store->NormalTransform)
66 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
70 &store->normal ); /* resulting normals */
73 store->normal.stride = 4 * sizeof(GLfloat);
76 store->normal.stride = 0;
79 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
87 * Examine current GL state and set the store->NormalTransform pointer
93 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
98 store->NormalTransform = NULL
151 struct normal_stage_data *store; local
169 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
    [all...]
  /art/runtime/interpreter/mterp/x86_64/
op_const_wide_16.S 3 SET_WIDE_VREG %rax, rINSTq # store
op_const_wide_32.S 3 SET_WIDE_VREG %rax, rINSTq # store
  /art/test/071-dexfile-map-clean/
build 21 ./default-build "$@" --zip-compression-method store --zip-align 4
  /art/test/674-vdex-uncompress/
build 19 ./default-build "$@" --zip-compression-method store --zip-align 4
  /art/test/677-fsi/
build 17 ./default-build "$@" --zip-compression-method store --zip-align 4
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store;
31 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store, StoreManager &);
40 return x.store == store;
46 Store getStore() const { return store; }
    [all...]
  /external/curl/lib/
parsedate.h 28 CURLcode Curl_gmtime(time_t intime, struct tm *store);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store;
31 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store, StoreManager &);
40 return x.store == store;
46 Store getStore() const { return store; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
22 /// Store - This opaque type encapsulates an immutable mapping from
26 typedef const void *Store;
31 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store, StoreManager &);
40 return x.store == store;
46 Store getStore() const { return store; }
    [all...]

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>