Lines Matching refs:pathname
163 static int write_key(const char *pathname, const char *key, const char *value, int icase)
170 fd = open(pathname, O_RDWR);
286 static char *read_key(const char *pathname, const char *key, int icase)
293 fd = open(pathname, O_RDONLY);
350 int textfile_put(const char *pathname, const char *key, const char *value)
352 return write_key(pathname, key, value, 0);
355 int textfile_caseput(const char *pathname, const char *key, const char *value)
357 return write_key(pathname, key, value, 1);
360 int textfile_del(const char *pathname, const char *key)
362 return write_key(pathname, key, NULL, 0);
365 int textfile_casedel(const char *pathname, const char *key)
367 return write_key(pathname, key, NULL, 1);
370 char *textfile_get(const char *pathname, const char *key)
372 return read_key(pathname, key, 0);
375 char *textfile_caseget(const char *pathname, const char *key)
377 return read_key(pathname, key, 1);
380 int textfile_foreach(const char *pathname,
388 fd = open(pathname, O_RDONLY);