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

  /external/valgrind/none/tests/
process_vm_readv_writev.c 17 char lbuf[] = "123456"; local
23 lvec[0].iov_base = lbuf + 1;
25 lvec[1].iov_base = lbuf + 3;
41 if (strcmp(lbuf, "1B3CE6") != 0) {
42 fprintf(stderr, "Expected: \"1B3CE6\"; Got: \"%s\"\n", lbuf);
53 char lbuf[] = "123456"; local
59 lvec[0].iov_base = lbuf + 1;
61 lvec[1].iov_base = lbuf + 3;
  /external/ltp/testcases/kernel/syscalls/link/
link02.c 60 struct stat fbuf, lbuf; local
66 SAFE_STAT(cleanup, NEWPATH, &lbuf);
67 if (fbuf.st_nlink > 1 && lbuf.st_nlink > 1 &&
68 fbuf.st_nlink == lbuf.st_nlink) {
74 (int)fbuf.st_nlink, (int)lbuf.st_nlink);
link05.c 72 struct stat fbuf, lbuf; local
110 SAFE_STAT(cleanup, lname, &lbuf);
111 if (fbuf.st_nlink <= 1 || lbuf.st_nlink <= 1 ||
112 (fbuf.st_nlink != lbuf.st_nlink)) {
119 (int)fbuf.st_nlink, (int)lbuf.st_nlink);
  /external/syslinux/core/legacynet/
core.c 127 void *lbuf; local
130 lbuf = lmalloc(len);
131 if (!lbuf)
134 memcpy(lbuf, data, len);
137 udp_write.buffer = FAR_PTR(lbuf);
146 lfree(lbuf);
163 void *lbuf; local
166 lbuf = lmalloc(len);
167 if (!lbuf)
170 memcpy(lbuf, data, len)
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 197 byte[] lbuf = new byte[512];
199 attr.read(fis, lbuf);
210 while ((len = fis.readLine(lbuf)) != -1) {
211 if (lbuf[--len] != '\n') {
214 if (len > 0 && lbuf[len-1] == '\r') {
223 name = parseName(lbuf, len);
230 System.arraycopy(lbuf, 6, lastline, 0, len - 6);
237 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
251 attr.read(fis, lbuf);
264 private String parseName(byte[] lbuf, int len)
    [all...]
Attributes.java 372 void read(Manifest.FastInputStream is, byte[] lbuf) throws IOException {
377 while ((len = is.readLine(lbuf)) != -1) {
379 if (lbuf[--len] != '\n') {
382 if (len > 0 && lbuf[len-1] == '\r') {
389 if (lbuf[0] == ' ') {
397 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
405 while (lbuf[i++] != ':') {
410 if (lbuf[i++] != ' ') {
413 name = new String(lbuf, 0, 0, i - 2);
416 System.arraycopy(lbuf, i, lastline, 0, len - i)
    [all...]
  /external/tensorflow/tensorflow/core/lib/io/
record_reader.cc 171 StringPiece lbuf; local
172 Status s = ReadChecksummed(*offset, sizeof(uint64), &lbuf, record);
176 const uint64 length = core::DecodeFixed64(lbuf.data());
  /external/toybox/toys/pending/
ip.c 953 lbuf[INET6_ADDRSTRLEN] = {0,}, lbuf_ifa[INET6_ADDRSTRLEN] = {0,}; local
990 if (!if_indextoname(ifa->ifa_index, lbuf)) perror_exit(NULL);
991 printf("%u: %s",ifa->ifa_index, lbuf);
1002 lbuf, sizeof(lbuf))) perror_exit("inet");
1004 sprintf(family+strlen(family), lbuf, strlen(lbuf));
1015 if (addrinfo.to && strcmp(addrinfo.addr, lbuf))
1020 lbuf, sizeof(lbuf))) perror_exit("inet")
1350 char lbuf[INET6_ADDRSTRLEN]; local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-gen.c 2183 char lbuf[80], buf[80]; local
    [all...]
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 1139 int readlink_path(pathname_t * name, char *lbuf, size_t lbufsiz)
1145 rval = readlink(name->path, lbuf, lbufsiz-1);
1147 lbuf[rval] = '\0';
1152 rval = readlink_path(&newname, lbuf, lbufsiz);
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 208 char lbuf[sizeof(struct udphdr) + member in union:__anon22245
254 udp = (struct udphdr *)&x.lbuf[0];
256 ip = (struct iphdr *)(x.lbuf + sizeof(*udp));
262 udp = (struct udphdr *)&x.lbuf[0];
264 ip = (struct ip *)(x.lbuf + sizeof(*udp));
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 1166 int readlink_path(pathname_t * name, char *lbuf, size_t lbufsiz)
1172 rval = readlink(name->path, lbuf, lbufsiz);
1177 rval = readlink_path(&newname, lbuf, lbufsiz);
    [all...]

Completed in 369 milliseconds