HomeSort by relevance Sort by last modified time
    Searched refs:char_value (Results 1 - 14 of 14) sorted by null

  /tools/test/connectivity/acts/tests/google/ble/gatt/
GattReadTest.py 67 char_value = [1, 2, 3, 4, 5, 6, 7, 20]
71 status, offset, char_value)
76 self.assertEqual(char_value, event["data"]["CharacteristicValue"],
114 char_value = []
116 char_value.append(i % 256)
124 num_packets = ceil((len(char_value) + 1) / (self.mtu - 1))
140 char_value[startOffset:startOffset + self.mtu - 1])
146 self.assertEqual(char_value, event["data"]["CharacteristicValue"],
186 char_value = [1, 2, 3, 4, 5, 6, 7, 20]
190 status, offset, char_value)
    [all...]
GattWriteTest.py 41 1. Central: write WRITABLE_CHAR_UUID characteristic with char_value
57 char_value = [1, 2, 3, 4, 5, 6, 7]
60 self.test_service_index, self.WRITABLE_CHAR_UUID, char_value)
76 self.assertEqual(char_value, event['data']['value'])
155 1. Central: write WRITABLE_CHAR_UUID characteristic with char_value
170 char_value = [1, 2, 3, 4, 5, 6, 7]
173 self.test_service_index, self.WRITABLE_CHAR_UUID, char_value)
195 self.assertEqual(char_value, event['data']['value'])
206 1. Central: write WRITABLE_CHAR_UUID characteristic with char_value
221 char_value = [
    [all...]
  /tools/test/connectivity/acts/tests/google/ble/system_tests/
GattLongevityTest.py 45 1. Central: write WRITABLE_CHAR_UUID characteristic with char_value
72 char_value = []
74 char_value.append(j % 256)
78 self.test_service_index, self.WRITABLE_CHAR_UUID, char_value)
97 if found_value != char_value:
99 "Expected: {}".format(found_value, char_value))
  /external/clang/test/PCH/
cxx_exprs.cpp 44 static_assert(char_value == 97, "char_value is correct");
cxx_exprs.h 85 const char char_value = 'a'; variable
  /external/python/cpython3/PC/clinic/
msvcrtmodule.c.h 314 msvcrt_putch_impl(PyObject *module, char char_value);
320 char char_value; local
322 if (!PyArg_Parse(arg, "c:putch", &char_value)) {
325 return_value = msvcrt_putch_impl(module, char_value);
372 msvcrt_ungetch_impl(PyObject *module, char char_value);
378 char char_value; local
380 if (!PyArg_Parse(arg, "c:ungetch", &char_value)) {
383 return_value = msvcrt_ungetch_impl(module, char_value);
  /external/python/cpython3/PC/
msvcrtmodule.c 309 msvcrt_putch_impl(PyObject *module, char char_value)
313 _putch(char_value);
352 msvcrt_ungetch_impl(PyObject *module, char char_value)
358 res = _ungetch(char_value);
  /external/google-breakpad/src/client/
minidump_file_writer_unittest.cc 63 unsigned char char_value; member in struct:ArrayStructure
91 local.char_value = i;
104 local.char_value = i;
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
gatts_lib.py 286 char_value = []
288 char_value.append(i % 256)
292 num_packets = ceil((len(char_value) + 1) / (mtu - 1))
300 data = char_value[start_offset:start_offset + mtu - 1]
327 char_value = []
331 num_packets = ceil((len(char_value) + 1) / (mtu - 1))
  /system/extras/tests/memtest/
bandwidth.cpp 62 const char *char_value; member in union:__anon3029
82 (*values)[name].char_value = argv[++i];
95 const char *name = values["type"].char_value;
  /tools/dexter/slicer/export/slicer/
dex_ir.h 135 uint16_t char_value; member in union:ir::EncodedValue::__anon5148
  /art/runtime/interpreter/
unstarted_runtime.cc 105 char char_value = static_cast<char>(int_value); local
108 result->SetI(std::tolower(char_value, c_locale));
110 result->SetI(std::toupper(char_value, c_locale));
    [all...]
  /tools/dexter/slicer/
reader.cc 489 ir_encoded_value->u.char_value = ParseIntValue<uint16_t>(pptr, arg + 1);
writer.cc 115 WriteIntValue(type, ir_value->u.char_value, data);
    [all...]

Completed in 353 milliseconds