HomeSort by relevance Sort by last modified time
    Searched refs:store (Results 1 - 25 of 1669) 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.c 49 void* thread_store_get( thread_store_t* store )
51 if (!store->has_tls)
54 return pthread_getspecific( store->tls );
57 extern void thread_store_set( thread_store_t* store,
61 pthread_mutex_lock( &store->lock );
62 if (!store->has_tls) {
63 if (pthread_key_create( &store->tls, destroy) != 0) {
64 pthread_mutex_unlock(&store->lock);
67 store->has_tls = 1;
69 pthread_mutex_unlock( &store->lock )
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
MediaDeviceInfo.java 40 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
41 store.startArray("media_codec_info");
45 store.startGroup();
46 store.addResult("name", info.getName());
47 store.addResult("encoder", info.isEncoder());
49 store.startArray("supported_type");
52 store.startGroup();
53 store.addResult("type", type);
55 store.startArray("codec_profile_level");
58 store.startGroup()
    [all...]
GraphicsDeviceInfo.java 30 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
37 store.addResult("gl_version", stubActivity.getGlVersion());
38 store.addResult("vendor", stubActivity.getVendor());
39 store.addResult("renderer", stubActivity.getRenderer());
41 store.addListResult("gl_texture", stubActivity.getCompressedTextureFormats());
42 store.addListResult("gl_extension", stubActivity.getOpenGlExtensions());
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);
LibraryDeviceInfo.java 40 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
41 collectSystemLibs(store);
42 collectVendorLibs(store);
43 collectFrameworkJars(store);
46 private void collectSystemLibs(DeviceInfoStore store) throws Exception {
47 store.startArray("lib");
48 collectFileDetails(store, "/system/lib", ".so");
49 store.endArray();
52 private void collectVendorLibs(DeviceInfoStore store) throws Exception {
53 store.startArray("vendor_lib")
    [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/tools/cts-device-info/src/com/android/cts/deviceinfo/
VulkanDeviceInfo.java 50 * allow array-of-array, we instead store formats as an object, with format enum values as keys
288 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
291 emitLayers(store, instance);
292 emitExtensions(store, instance);
293 emitDevices(store, instance);
300 private static void emitDevices(DeviceInfoStore store, JSONObject parent)
303 store.startArray(convertName(KEY_DEVICES));
306 store.startGroup();
309 store.startGroup(convertName(KEY_PROPERTIES));
311 emitLong(store, properties, KEY_API_VERSION)
    [all...]
SampleDeviceInfo.java 31 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
38 store.startGroup("foo");
39 store.addResult("foo_boolean", Boolean.TRUE);
42 store.startGroup("bar");
43 store.addListResult("bar_string", Arrays.asList(new String[] {
48 store.addArrayResult("bar_boolean", booleans);
49 store.addArrayResult("bar_double", doubles);
50 store.addArrayResult("bar_int", ints);
51 store.addArrayResult("bar_long", longs);
52 store.endGroup(); // ba
    [all...]
SensorDeviceInfo.java 57 protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
61 store.startArray(SENSOR);
63 store.startGroup();
64 store.addResult(REPORTING_MODE, sensor.getReportingMode());
65 store.addResult(NAME, sensor.getName());
66 store.addResult(VENDOR, sensor.getVendor());
67 store.addResult(TYPE, sensor.getType());
68 store.addResult(VERSION, sensor.getVersion());
69 store.addResult(MAXIMUM_RANGE, sensor.getMaximumRange());
70 store.addResult(RESOLUTION, sensor.getResolution())
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-416558.js 6 function store(x) { x[0] = 0; }
7 store([]);
9 store(c);
12 store(b);
20 function store(x) { x[0] = 0; }
21 store([]);
23 store(c);
26 store(b);
34 function store(x) { x[0] = 0; }
35 store([]);
    [all...]
regress-4296.js 7 function store(o, i, v) { o[i] = v; } function
11 store(o, 2, 10);
14 store(o, 0, 100);
20 function store(o, i, v) { o[i] = v; }
24 store(o, 2, 10);
27 store(o, 0, 100);
34 function store(o, i, v) { o[i] = v; }
37 store(o, 0, 100);
39 assertThrows(function () { store(o, 1, 100) });
regress-509961.js 7 function store(o, p, v) { o[p] = v; } function
8 store(o, "x", 1);
9 store(o, "x", 1);
10 store(o, "0", 1);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/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);
  /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 52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
56 if (!store->NormalTransform)
67 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
71 &store->normal ); /* resulting normals */
74 store->normal.stride = 4 * sizeof(GLfloat);
77 store->normal.stride = 0;
80 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal;
88 * Examine current GL state and set the store->NormalTransform pointer
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage); local
99 store->NormalTransform = NULL
152 struct normal_stage_data *store; local
170 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
  /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);
  /external/curl/src/
tool_helpers.c 68 int SetHTTPrequest(struct OperationConfig *config, HttpReq req, HttpReq *store)
70 if((*store == HTTPREQ_UNSPEC) ||
71 (*store == req)) {
72 *store = req;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
PreferenceInitializer.java 95 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
97 store.setDefault(ATTR_DEBUG_PORT_BASE, DdmPreferences.DEFAULT_DEBUG_PORT_BASE);
99 store.setDefault(ATTR_SELECTED_DEBUG_PORT, DdmPreferences.DEFAULT_SELECTED_DEBUG_PORT);
101 store.setDefault(ATTR_DEFAULT_THREAD_UPDATE, DdmPreferences.DEFAULT_INITIAL_THREAD_UPDATE);
102 store.setDefault(ATTR_DEFAULT_HEAP_UPDATE,
105 store.setDefault(ATTR_PROFILER_BUFSIZE_MB, DdmPreferences.DEFAULT_PROFILER_BUFFER_SIZE_MB);
107 store.setDefault(ATTR_THREAD_INTERVAL, DdmUiPreferences.DEFAULT_THREAD_REFRESH_INTERVAL);
110 store.setDefault(ATTR_IMAGE_SAVE_DIR, homeDir);
112 store.setDefault(ATTR_LOG_LEVEL, DdmPreferences.DEFAULT_LOG_LEVEL.getStringValue());
114 store.setDefault(ATTR_LOGCAT_FONT
142 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
    [all...]
  /system/update_engine/update_manager/
real_config_provider.cc 41 KeyValueStore store; local
44 store.Load(base::FilePath(root_prefix_ + kConfigFilePath));
46 if (store.Load(base::FilePath(root_prefix_ +
51 store.Load(base::FilePath(root_prefix_ + kConfigFilePath));
56 if (!store.GetBoolean(kConfigOptsIsOOBEEnabled, &is_oobe_enabled))
  /system/connectivity/shill/
property_store_unittest.h 76 static bool GetProperty(const PropertyStore& store, const std::string& name,
78 return store.GetBoolProperty(name, storage, error);
81 static bool GetProperty(const PropertyStore& store, const std::string& name,
83 return store.GetInt16Property(name, storage, error);
86 static bool GetProperty(const PropertyStore& store, const std::string& name,
88 return store.GetInt32Property(name, storage, error);
91 static bool GetProperty(const PropertyStore& store, const std::string& name,
93 return store.GetStringProperty(name, storage, error);
96 static bool GetProperty(const PropertyStore& store, const std::string& name,
98 return store.GetStringmapProperty(name, storage, error)
    [all...]

Completed in 520 milliseconds

1 2 3 4 5 6 7 8 91011>>