Searched refs:flag (Results 1 - 25 of 154) sorted by relevance

1234567

/haiku/src/system/libroot/posix/libstdthreads/
H A Dcall_once.c36 call_once(once_flag *flag, void (*func)(void)) argument
39 (void)pthread_once((pthread_once_t *)flag, func);
/haiku/src/bin/network/telnetd/
H A Dslc.c70 if ((slctab[i].defset.flag & SLC_LEVELBITS) == SLC_NOSUPPORT)
72 add_slc((unsigned char)i, slctab[i].current.flag,
91 slctab[i].current.flag = SLC_NOSUPPORT;
93 slctab[i].current.flag = slctab[i].defset.flag;
116 slctab[i].defset.flag =
118 slctab[i].current.flag = SLC_NOSUPPORT;
131 add_slc(char func, char flag, cc_t val) argument
137 if ((*slcptr++ = (unsigned char)flag) == 0xff)
217 process_slc(unsigned char func, unsigned char flag, cc_ argument
281 change_slc(char func, char flag, cc_t val) argument
434 unsigned char func, flag; local
[all...]
/haiku/headers/build/host/darwin/
H A Dunistd.h10 int faccessat(int fd, const char* path, int accessMode, int flag);
11 int fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag);
14 int flag);
H A Dfcntl.h37 int unlinkat(int fd, const char *path, int flag);
/haiku/src/system/libroot/posix/signal/
H A Dsiginterrupt.cpp15 __siginterrupt_beos(int signal, int flag) argument
19 if (flag)
29 __siginterrupt(int signal, int flag) argument
33 if (flag)
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dinode.h57 #define test_nino_flag(ni, flag) test_bit(NI_##flag, (ni)->state)
58 #define set_nino_flag(ni, flag) set_bit(NI_##flag, (ni)->state)
59 #define clear_nino_flag(ni, flag) clear_bit(NI_##flag, (ni)->state)
61 #define test_and_set_nino_flag(ni, flag) \
62 test_and_set_bit(NI_##flag, (ni)->state)
63 #define test_and_clear_nino_flag(ni, flag) \
64 test_and_clear_bit(NI_##flag, (n
[all...]
H A Ddevice.h48 #define test_ndev_flag(nd, flag) test_bit(ND_##flag, (nd)->d_state)
49 #define set_ndev_flag(nd, flag) set_bit(ND_##flag, (nd)->d_state)
50 #define clear_ndev_flag(nd, flag) clear_bit(ND_##flag, (nd)->d_state)
/haiku/src/system/libroot/posix/unistd/
H A Daccess.c25 faccessat(int fd, const char* path, int accessMode, int flag) argument
28 (flag & AT_EACCESS) != 0);
H A Dlink.c72 unlinkat(int fd, const char *path, int flag) argument
74 if ((flag & AT_REMOVEDIR) != 0)
94 linkat(int toFD, const char *toPath, int linkFD, const char *linkPath, int flag) argument
97 (flag & AT_SYMLINK_FOLLOW) != 0));
/haiku/src/libs/mapm/
H A Dmapmrsin.c66 int tolerance, flag, local_precision, dplaces; local
84 flag = 0;
103 if (flag == 0)
115 flag = 1 - flag;
130 int tolerance, flag, local_precision, prev_exp; local
150 flag = 0;
160 if (flag == 0)
185 flag = 1 - flag;
[all...]
/haiku/src/build/libroot/
H A Dfs_darwin.cpp110 faccessat(int fd, const char* path, int accessMode, int flag) argument
112 if (flag != AT_EACCESS && flag != 0) {
113 // invalid flag
120 return (flag & AT_EACCESS) != 0 ? eaccess(path, accessMode)
134 return (flag & AT_EACCESS) != 0 ? eaccess(fullPath, accessMode)
140 fchmodat(int fd, const char* path, mode_t mode, int flag) argument
142 if ((flag & AT_SYMLINK_NOFOLLOW) == 0 && flag != 0) {
143 // invalid flag
184 fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag) argument
242 fstatat(int fd, const char *path, struct stat *st, int flag) argument
429 unlinkat(int fd, const char *path, int flag) argument
458 linkat(int oldFD, const char *oldPath, int newFD, const char *newPath, int flag) argument
[all...]
H A Dremapped_functions.h14 int _haiku_build_fchmodat(int fd, const char* path, mode_t mode, int flag);
17 int flag);
21 const struct timespec times[2], int flag);
24 int flag);
30 const char* path, int flag);
31 int _haiku_build_unlinkat(int fd, const char* path, int flag);
39 gid_t group, int flag);
H A Dfunction_remapper.cpp25 fchmodat(int fd, const char* path, mode_t mode, int flag) argument
29 return _haiku_build_fchmodat(fd, path, mode, flag);
43 fstatat(int fd, const char* path, struct stat* st, int flag) argument
47 return _haiku_build_fstatat(fd, path, st, flag);
70 utimensat(int fd, const char* path, const struct timespec times[2], int flag) argument
74 return _haiku_build_utimensat(fd, path, times, flag);
88 faccessat(int fd, const char* path, int accessMode, int flag) argument
92 return _haiku_build_faccessat(fd, path, accessMode, flag);
133 linkat(int toFD, const char* toPath, int pathFD, const char* path, int flag) argument
137 return _haiku_build_linkat(toFD, toPath, pathFD, path, flag);
142 unlinkat(int fd, const char* path, int flag) argument
187 fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag) argument
[all...]
/haiku/headers/build/
H A DBeOSBuildCompatibility.h54 // There's no O_NOTRAVERSE under Linux and FreeBSD -- we replace it with a flag
57 // We can abuse this flag for our purposes as we filter it in libroot.
86 int _haiku_build_fchmodat(int fd, const char* path, mode_t mode, int flag);
89 int flag);
93 const struct timespec times[2], int flag);
96 int flag);
102 const char* path, int flag);
103 int _haiku_build_unlinkat(int fd, const char* path, int flag);
111 gid_t group, int flag);
129 # define fchmodat(fd, path, mode, flag) \
[all...]
/haiku/headers/build/host/darwin/sys/
H A Dstat.h18 int flag);
32 int fchmodat(int fd, const char* path, mode_t mode, int flag);
33 int fstatat(int fd, const char *path, struct stat *st, int flag);
/haiku/headers/build/host/freebsd/sys/
H A Dstat.h18 int flag);
/haiku/headers/posix/
H A Dgetopt.h17 int *flag; member in struct:option
/haiku/src/apps/poorman/
H A DPoorManWindow.h68 void SetDirListFlag(bool flag) argument
70 fDirListFlag = flag;
100 void SetLogConsoleFlag(bool flag) argument
102 fLogConsoleFlag = flag;
110 void SetLogFileFlag(bool flag) argument
112 fLogFileFlag = flag;
/haiku/src/system/libroot/posix/sys/
H A Dchmod.c46 fchmodat(int fd, const char* path, mode_t mode, int flag) argument
52 status = _kern_write_stat(fd, path, (flag & AT_SYMLINK_NOFOLLOW) == 0, &stat,
/haiku/headers/libs/agg/
H A Dagg_ellipse_bresenham.h64 bool flag = true; local
69 flag = false;
84 if(flag)
/haiku/src/tests/system/kernel/
H A Dsigint_bug113_test.cpp38 #define ADD_SA_FLAG(flag) { flag, #flag }
42 int flag; member in struct:__anon5945
120 if (action.sa_flags & kSigActionFlags[i].flag) {
/haiku/src/bin/unzip/
H A Dunzipstb.c50 if (pVersion->flag & 2)
/haiku/headers/os/mail/
H A DMailDaemon.h33 read_flags flag = B_READ);
/haiku/src/servers/mail/
H A DDefaultNotifier.cpp153 int32 flag; local
155 flag = B_MAIL_SHOW_STATUS_WINDOW_WHEN_ACTIVE;
157 flag = B_MAIL_SHOW_STATUS_WINDOW_WHEN_SENDING;
159 if ((fShowMode & flag) != 0)
/haiku/headers/libs/x86emu/x86emu/
H A Dregs.h173 /* flag conditions */
174 #define FB_CF 0x0001 /* CARRY flag */
175 #define FB_PF 0x0004 /* PARITY flag */
176 #define FB_AF 0x0010 /* AUX flag */
177 #define FB_ZF 0x0040 /* ZERO flag */
178 #define FB_SF 0x0080 /* SIGN flag */
179 #define FB_TF 0x0100 /* TRAP flag */
180 #define FB_IF 0x0200 /* INTERRUPT ENABLE flag */
181 #define FB_DF 0x0400 /* DIR flag */
182 #define FB_OF 0x0800 /* OVERFLOW flag */
[all...]

Completed in 139 milliseconds

1234567