HomeSort by relevance Sort by last modified time
    Searched defs:read_data (Results 1 - 25 of 45) sorted by null

1 2

  /external/syslinux/gpxe/src/drivers/nvs/
nvs.c 87 uint8_t read_data[len]; local
91 if ( ( rc = nvs_read ( nvs, address, read_data, len ) ) != 0 )
95 if ( memcmp ( data, read_data, len ) != 0 ) {
  /art/tools/runtime_memusage/
symbol_trace_info.py 190 def read_data(parsed_argv): function
265 data_lists, categories, symbol_file_split = read_data(parsed_argv)
  /external/vboot_reference/tests/
vb21_host_misc_tests.c 34 uint8_t *read_data; local
42 TEST_EQ(vb2_read_file(testfile, &read_data, &read_size),
49 TEST_SUCC(vb2_read_file(testfile, &read_data, &read_size),
52 TEST_EQ(memcmp(read_data, test_data, read_size), 0, " data");
53 free(read_data);
62 TEST_SUCC(vb2_read_file(testfile, &read_data, &read_size),
66 TEST_EQ(memcmp(read_data, c, read_size), 0, " data");
67 free(read_data);
  /external/libbrillo/brillo/http/
http_request_unittest.cc 152 auto read_data = local
181 [this, &read_data](const SuccessCallback& success_callback) {
184 .WillOnce(Invoke(read_data))
  /system/bt/hci/include/
hci_hal.h 65 size_t (*read_data)(serial_data_type_t type, uint8_t* buffer, member in struct:hci_hal_t
  /external/fio/tools/
fiologparser.py 159 self.read_data(fn)
161 def read_data(self, fn): member in class:TimeSeries
  /external/webrtc/webrtc/common_audio/
ring_buffer_unittest.cc 62 rtc::scoped_ptr<int[]> read_data(new int[buffer_size]);
92 read_data.get(),
94 int* check_ptr = read_data.get();
118 int read_data[kDataSize]; local
127 SetIncrementingData(read_data, kDataSize, kDataSize);
129 reinterpret_cast<void**>(&data_ptr), read_data, kDataSize));
130 // Copying was not necessary, so |read_data| has not been updated.
132 CheckIncrementingData(read_data, kDataSize, kDataSize);
135 EXPECT_EQ(kDataSize, WebRtc_ReadBuffer(buffer.get(), NULL, read_data,
137 // Passing NULL forces a memcpy, so |read_data| is now updated
    [all...]
  /system/extras/simpleperf/
UnixSocket_test.cpp 32 std::vector<char> read_data; local
73 read_data.insert(read_data.end(), msg->data, msg->data + msg->type);
75 ASSERT_EQ(send_data, read_data);
  /device/google/contexthub/util/stm32_flash/
stm32_bl.h 27 * read_data - read length bytes of data
40 uint8_t (*read_data)(struct handle *, uint8_t *buffer, int length); member in struct:handle
  /external/ltp/testcases/kernel/io/stress_cd/
stress_cd.c 48 static int read_data(int, unsigned long *);
65 read_data(0, &checksum);
128 read_data(num, &cksum);
140 static int read_data(int num, unsigned long *cksum) function
150 printf("\tThread [%d]: read_data()\n", num);
  /external/squashfs-tools/kernel-2.4/include/linux/
squashfs_fs_sb.h 58 char *read_data; member in struct:squashfs_sb_info
  /system/core/libappfuse/include/libappfuse/
FuseBuffer.h 88 char read_data[N]; member in union:android::fuse::FuseResponseBase::__anon2776
  /system/tpm/tpm_manager/server/
tpm2_nvram_test.cc 351 std::string read_data; local
395 std::string read_data; local
397 tpm_nvram_->ReadSpace(index, &read_data, kFakeAuthorizationValue));
398 EXPECT_EQ(read_data, tpm_data);
405 std::string read_data; local
407 tpm_nvram_->ReadSpace(index, &read_data, kFakeAuthorizationValue));
416 std::string read_data; local
418 tpm_nvram_->ReadSpace(index, &read_data, kFakeAuthorizationValue));
429 std::string read_data; local
431 tpm_nvram_->ReadSpace(index, &read_data, kFakeAuthorizationValue))
443 std::string read_data; local
    [all...]
  /external/curl/lib/
security.c 189 static CURLcode read_data(struct connectdata *conn, function
254 if(read_data(conn, fd, &conn->in_buffer))
  /external/libxcam/modules/soft/
soft_image.h 104 inline T read_data (int32_t x, int32_t y) const { function in class:XCam::SoftImage
  /external/tensorflow/tensorflow/examples/tutorials/word2vec/
word2vec_basic.py 78 def read_data(filename): function
85 vocabulary = read_data(filename)
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
read_device_node.c 63 static int read_data(char *buffer_access) function
279 read_data(buffer_access);
  /packages/experimental/procstatlog/
procstatlog.c 72 static void read_data(struct data *data, const char *filename) { function
290 read_data(next++, filename);
292 read_data(next++, filename);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_shutil.py 147 def read_data(path): function in function:TestShutil.test_copytree_simple
167 actual = read_data(os.path.join(dst_dir, 'test.txt'))
169 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
193 def read_data(path): function in function:TestShutil.test_copytree_with_exclude
  /external/libmojo/mojo/edk/system/
data_pipe_unittest.cc 1692 int32_t read_data; local
    [all...]
  /external/python/cpython2/Lib/test/
test_shutil.py 149 def read_data(path): function in function:TestShutil.test_copytree_simple
169 actual = read_data(os.path.join(dst_dir, 'test.txt'))
171 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
195 def read_data(path): function in function:TestShutil.test_copytree_with_exclude
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_shutil.py 148 def read_data(path): function in function:TestShutil.test_copytree_simple
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
194 def read_data(path): function in function:TestShutil.test_copytree_with_exclude
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_shutil.py 148 def read_data(path): function in function:TestShutil.test_copytree_simple
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
194 def read_data(path): function in function:TestShutil.test_copytree_with_exclude
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 148 def read_data(path): function in function:TestShutil.test_copytree_simple
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
194 def read_data(path): function in function:TestShutil.test_copytree_with_exclude
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 148 def read_data(path): function in function:TestShutil.test_copytree_simple
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
194 def read_data(path): function in function:TestShutil.test_copytree_with_exclude

Completed in 577 milliseconds

1 2