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

  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 82 char *envbuf, *sep, *resbuf, *cmdbuf; local
88 (envbuf = (char *)malloc(envbufsize))
96 GetEnvironmentVariable("PATH", envbuf, envbufsize)
98 dbg_printf("env: %s\n", envbuf);
112 len = strlen(envbuf)+strlen(cmdbuf)
121 (snprintf(resbuf, len, "%s;%s", cmdbuf, envbuf) > 0)
203 free(envbuf);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 146 static char envbuf[16<<10]; local
147 if (*envbuf == '\0') { // haven't read the environ yet
151 saferead(fd, envbuf, sizeof(envbuf) - 2) < 0) { // error reading file
160 const char* p = envbuf;
163 const char* endp = (char*)memchr(p, '\0', sizeof(envbuf) - (p - envbuf));
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 141 static char envbuf[16<<10]; local
142 if (*envbuf == '\0') { // haven't read the environ yet
146 saferead(fd, envbuf, sizeof(envbuf) - 2) < 0) { // error reading file
155 const char* p = envbuf;
158 const char* endp = (char*)memchr(p, '\0', sizeof(envbuf) - (p - envbuf));
    [all...]

Completed in 80 milliseconds