Lines Matching refs:a
255 is_env_setting (const char *a) in is_env_setting() argument
259 while (*a) in is_env_setting()
261 if (isalnum (*a) || *a == '_') in is_env_setting()
263 else if (*a == '=' && count_name > 0) in is_env_setting()
267 ++a; in is_env_setting()
442 need_sync (char *ap, char *bp, struct stat *a, struct stat *b) in need_sync() argument
444 if ((a->st_mode & S_IFMT) != (b->st_mode & S_IFMT)) in need_sync()
447 if (S_ISLNK (a->st_mode)) in need_sync()
452 if (a->st_size != b->st_size) in need_sync()
467 if (a->st_size != b->st_size) in need_sync()
469 if ((a->st_mode & 0777) != (b->st_mode & 0777)) in need_sync()
471 if (a->st_mtime != b->st_mtime) in need_sync()
475 if (a->st_size == b->st_size in need_sync()
476 && ((a->st_mode & 0777) == (b->st_mode & 0777)) in need_sync()
477 && a->st_mtime == b->st_mtime) in need_sync()