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

  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 275 size_t dirnamelen; local
283 dirnamelen = (size_t) os_snprintf(pathname, sizeof(pathname), "%s/",
285 if (dirnamelen >= sizeof(pathname)) {
289 namep = pathname + dirnamelen;
290 maxcopy = PATH_MAX - dirnamelen;
  /external/kmod/tools/
depmod.c 449 size_t dirnamelen; member in struct:cfg
946 if (strncmp(mod->path, cfg->dirname, cfg->dirnamelen) == 0 &&
947 mod->path[cfg->dirnamelen] == '/')
948 mod->relpath = mod->path + cfg->dirnamelen + 1;
1013 assert(strncmp(newpath, cfg->dirname, cfg->dirnamelen) == 0);
1014 assert(strncmp(oldpath, cfg->dirname, cfg->dirnamelen) == 0);
1016 newpath += cfg->dirnamelen + 1;
1017 newlen -= cfg->dirnamelen + 1;
1018 oldpath += cfg->dirnamelen + 1;
1019 oldlen -= cfg->dirnamelen + 1
    [all...]
  /external/kmod/libkmod/
libkmod-module.c 145 size_t dirnamelen; local
158 dirnamelen = strlen(dirname);
159 if (dirnamelen + 2 >= PATH_MAX)
162 memcpy(buf, dirname, dirnamelen);
163 buf[dirnamelen] = '/';
164 dirnamelen++;
165 buf[dirnamelen] = '\0';
168 const char *str = path_join(line, dirnamelen, buf);
182 path = path_join(p, dirnamelen, buf);
    [all...]

Completed in 79 milliseconds