HomeSort by relevance Sort by last modified time
    Searched defs: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/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...]
  /external/kmod/tools/
depmod.c 463 size_t dirnamelen; member in struct:cfg
1018 if (strncmp(mod->path, cfg->dirname, cfg->dirnamelen) == 0 &&
1019 mod->path[cfg->dirnamelen] == '/')
1020 mod->relpath = mod->path + cfg->dirnamelen + 1;
1120 if (strncmp(newpath, cfg->dirname, cfg->dirnamelen) == 0) {
1121 relnewpath = newpath + cfg->dirnamelen + 1;
1122 relnewlen = newlen - (cfg->dirnamelen + 1);
1124 if (strncmp(oldpath, cfg->dirname, cfg->dirnamelen) == 0) {
1125 reloldpath = oldpath + cfg->dirnamelen + 1;
1126 reloldlen = oldlen - (cfg->dirnamelen + 1)
    [all...]

Completed in 699 milliseconds