Home | History | Annotate | Download | only in tests

Lines Matching defs:src

48   uint8_t src[] = "HELLO WORLD!";
49 uint8_t sg_data[sizeof(src) * 2];
55 copied = ese_sg_from_buf(&sg, 1, 0, sizeof(src), src);
56 EXPECT_EQ(copied, sizeof(src));
57 EXPECT_STREQ(reinterpret_cast<char *>(src),
114 uint8_t src[] = "HELLO WORLD";
116 copied = ese_sg_from_buf(sg, 3, 0, sizeof(src), src);
123 copied = ese_sg_from_buf(sg, 3, 6, sizeof(src), src);