Searched refs:flag (Results 1 - 6 of 6) sorted by relevance
/systemd/ |
H A D | .ycm_extra_conf.py | 24 for flag in flags: 25 new_flag = flag 29 if not flag.startswith('/'): 30 new_flag = os.path.join(working_directory, flag) 33 if flag == path_flag: 37 if flag.startswith(path_flag): 38 path = flag[ len(path_flag): ]
|
/systemd/src/shared/ |
H A D | ask-password-api.h | 36 int ask_password_agent(const char *message, const char *icon, const char *id, const char *keyname, usec_t until, AskPasswordFlags flag, char ***ret); 38 int ask_password_auto(const char *message, const char *icon, const char *id, const char *keyname, usec_t until, AskPasswordFlags flag, char ***ret);
|
/systemd/src/import/ |
H A D | aufs-util.c | 30 int flag, 27 nftw_cb( const char *fpath, const struct stat *sb, int flag, struct FTW *ftwbuf) argument
|
/systemd/src/basic/ |
H A D | socket-label.c | 80 int flag = only == SOCKET_ADDRESS_IPV6_ONLY; local 82 if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &flag, sizeof(flag)) < 0)
|
H A D | macro.h | 318 #define SET_FLAG(v, flag, b) \ 319 (v) = (b) ? ((v) | (flag)) : ((v) & ~(flag))
|
/systemd/src/network/ |
H A D | networkd-link.c | 221 #define FLAG_STRING(string, flag, old, new) \ 222 (((old ^ new) & flag) \ 223 ? ((old & flag) ? (" -" string) : (" +" string)) \ 1868 /* We propagate the forwarding flag from one interface to the 1892 * flag, if it is set, to the global flag, one-way. Note that 1893 * while IPv4 would allow a per-interface flag, we expose the
|
Completed in 1355 milliseconds