Home
last modified time | relevance | path

Searched refs:fl (Results 1 – 8 of 8) sorted by relevance

/busybox-1.35.0/util-linux/
Dfatattr.c57 unsigned fl = 0; in decode_arg() local
59 fl |= get_flag(*arg); in decode_arg()
60 return fl; in decode_arg()
70 unsigned fl; in fatattr_main() local
77 fl = decode_arg(arg); in fatattr_main()
79 set_mask |= fl; in fatattr_main()
81 clear_mask |= fl; in fatattr_main()
Dmount.c615 unsigned long fl = mount_options[i]; in parse_mount_options() local
616 if (fl & BB_MS_INVERTED_VALUE) in parse_mount_options()
617 flags &= fl; in parse_mount_options()
619 flags |= fl; in parse_mount_options()
623 if (fl == ~MS_RDONLY && opt) in parse_mount_options()
1976 llist_t *fl = NULL; in singlemount() local
2177 for (fl = fslist; fl; fl = fl->link) { in singlemount()
2178 mp->mnt_type = fl->data; in singlemount()
/busybox-1.35.0/scripts/kconfig/
Dkxgettext.c132 struct file_line *fl = file_line__new(file, lineno); in message__add_file_line() local
134 if (fl == NULL) in message__add_file_line()
137 fl->next = self->files; in message__add_file_line()
138 self->files = fl; in message__add_file_line()
185 struct file_line *fl = self->files; in message__print_file_lineno() local
191 printf("#: %s:%d", fl->file, fl->lineno); in message__print_file_lineno()
192 fl = fl->next; in message__print_file_lineno()
194 while (fl != NULL) { in message__print_file_lineno()
195 printf(", %s:%d", fl->file, fl->lineno); in message__print_file_lineno()
196 fl = fl->next; in message__print_file_lineno()
/busybox-1.35.0/e2fsprogs/
Dchattr.c82 unsigned *fl; in decode_arg() local
86 fl = &gp->af; in decode_arg()
91 fl = &gp->rf; in decode_arg()
134 *fl |= get_flag(*arg); /* aborts on bad flag letter */ in decode_arg()
/busybox-1.35.0/sysklogd/
Dsyslogd.c694 struct flock fl; in log_locally() local
749 fl.l_whence = SEEK_SET; in log_locally()
750 fl.l_start = 0; in log_locally()
751 fl.l_len = 1; in log_locally()
752 fl.l_type = F_WRLCK; in log_locally()
753 fcntl(log_file->fd, F_SETLKW, &fl); in log_locally()
786 fl.l_type = F_UNLCK; in log_locally()
787 fcntl(log_file->fd, F_SETLKW, &fl); in log_locally()
801 fl.l_type = F_UNLCK; in log_locally()
802 fcntl(log_file->fd, F_SETLKW, &fl); in log_locally()
/busybox-1.35.0/libbb/
Dpw_encrypt_des.c395 uint32_t fl, fr; in des_init() local
401 fl = 0; in des_init()
415 fl |= bits32[obit]; in des_init()
424 fp_maskl[k][i] = fl; in des_init()
/busybox-1.35.0/coreutils/
Ddd.c206 int fl = fcntl(fd, F_GETFL); in clear_O_DIRECT() local
207 if (fl & O_DIRECT) { in clear_O_DIRECT()
208 fcntl(fd, F_SETFL, fl & ~O_DIRECT); in clear_O_DIRECT()
/busybox-1.35.0/shell/
Dhush.c1700 HFILE *fl = G.HFILE_list; in move_HFILEs_on_redirect() local
1701 while (fl) { in move_HFILEs_on_redirect()
1702 if (fd == fl->fd) { in move_HFILEs_on_redirect()
1704 fl->fd = xdup_CLOEXEC_and_close(fd, avoid_fd); in move_HFILEs_on_redirect()
1705 debug_printf_redir("redirect_fd %d: matches a script fd, moving it to %d\n", fd, fl->fd); in move_HFILEs_on_redirect()
1708 fl = fl->next_hfile; in move_HFILEs_on_redirect()
1721 HFILE *fl = G.HFILE_list; in close_all_HFILE_list() local
1722 while (fl) { in close_all_HFILE_list()
1734 if (fl->fd > 0) in close_all_HFILE_list()
1736 close(fl->fd); in close_all_HFILE_list()
[all …]