HomeSort by relevance Sort by last modified time
    Searched defs:__findenv (Results 1 - 2 of 2) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
getenv.c 34 char *__findenv(const char *name, int len, int *offset);
37 * __findenv --
47 __findenv(const char *name, int len, int *offset) function
80 return (__findenv(name, (int)(np - name), &offset));
  /external/openssh/openbsd-compat/
setenv.c 44 /* OpenSSH Portable: __findenv is from getenv.c rev 1.8, made static */
46 * __findenv --
56 __findenv(const char *name, int len, int *offset) function
97 if (__findenv(str, (int)(cp - str), &offset) != NULL) {
100 while (__findenv(str, (int)(cp - str), &offset)) {
148 if ((C = __findenv(name, (int)(np - name), &offset)) != NULL) {
160 while (__findenv(name, (int)(np - name), &tmpoff)) {
216 while (__findenv(name, (int)(np - name), &offset)) {

Completed in 615 milliseconds