Home | History | Annotate | Download | only in shill

Lines Matching refs:int_store

39   int32_t int_store = 0;
42 int32_t orig_value = int_store;
43 Int32Accessor accessor(new PropertyAccessor<int32_t>(&int_store));
44 EXPECT_EQ(int_store, accessor->Get(&error));
59 int_store = std::numeric_limits<int32_t>::max();
64 Int32Accessor accessor(new ConstPropertyAccessor<int32_t>(&int_store));
65 EXPECT_EQ(int_store, accessor->Get(&error));
71 EXPECT_EQ(int_store, accessor->Get(&error));
73 int_store = std::numeric_limits<int32_t>::max();
78 Int32Accessor accessor(new ConstPropertyAccessor<int32_t>(&int_store));
84 Int32Accessor accessor(new WriteOnlyPropertyAccessor<int32_t>(&int_store));
92 WriteOnlyPropertyAccessor<int32_t> accessor(&int_store);
104 int_store = std::numeric_limits<int32_t>::max();
109 int32_t orig_value = int_store = 0;
110 WriteOnlyPropertyAccessor<int32_t> accessor(&int_store);
120 uint32_t int_store = 0;
123 uint32_t orig_value = int_store;
124 Uint32Accessor accessor(new PropertyAccessor<uint32_t>(&int_store));
125 EXPECT_EQ(int_store, accessor->Get(&error));
140 int_store = std::numeric_limits<uint32_t>::max();
145 Uint32Accessor accessor(new ConstPropertyAccessor<uint32_t>(&int_store));
146 EXPECT_EQ(int_store, accessor->Get(&error));
152 EXPECT_EQ(int_store, accessor->Get(&error));
154 int_store = std::numeric_limits<uint32_t>::max();
159 Uint32Accessor accessor(new ConstPropertyAccessor<uint32_t>(&int_store));
166 new WriteOnlyPropertyAccessor<uint32_t>(&int_store));
174 WriteOnlyPropertyAccessor<uint32_t> accessor(&int_store);
186 int_store = std::numeric_limits<uint32_t>::max();
191 uint32_t orig_value = int_store = 0;
192 WriteOnlyPropertyAccessor<uint32_t> accessor(&int_store);