Searched refs:flag (Results 1 - 25 of 154) sorted by last modified time

1234567

/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_codec.cpp187 uint32 flag; member in struct:__anon2
209 if ((capabilities & kFlags[j].flag) != 0)
/haiku/src/bin/network/ping/
H A Dping6.c2583 int flag = 0; local
2586 flag |= NI_NUMERICHOST;
2592 flag) == 0)
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwxreg.h898 * This status flag is set by the RFH when there is no active RBD fetch from
901 * RBD read response from DRAM), this flag is immediately turned off.
904 * This status flag is set by the RFH when there is no active transaction from
906 * Once the SRAM to DRAM DMA is active, this flag is immediately turned off.
909 * This status flag is set by the RFH when there is no active transaction from
911 * Once the RXF-to-DRAM DMA is active, this flag is immediately turned off.
2370 * flag, because the FW treats the whole value as an integer. In
2393 * @init_flags: IWX_INIT_* flag bits
3947 uint32_t interference_data_flag; /* flag for interference data
4076 * while associated. To disable this behavior, set DISABLE_NOTIF flag i
4103 uint32_t flag; member in struct:iwx_notif_statistics
[all...]
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp1172 bool flag; local
1176 && message->FindBool("value", &flag) == B_OK) {
1177 if (fShowTabsIfSinglePageOpen != flag) {
1178 fShowTabsIfSinglePageOpen = flag;
1182 && message->FindBool("value", &flag) == B_OK) {
1183 fAutoHidePointer = flag;
1199 && message->FindBool("value", &flag) == B_OK) {
1200 _SetAutoHideInterfaceInFullscreen(flag);
1202 && message->FindBool("value", &flag) == B_OK) {
1203 if (flag)
1734 SetToolBarsVisible(bool flag, BWebView* view) argument
1742 SetStatusBarVisible(bool flag, BWebView* view) argument
1750 SetMenuBarVisible(bool flag, BWebView* view) argument
1758 SetResizable(bool flag, BWebView* view) argument
[all...]
/haiku/src/kits/interface/
H A DTextView.cpp351 int32 flag, flag2; local
352 if (archive->FindInt32("_align", &flag) == B_OK)
353 SetAlignment((alignment)flag);
360 if (archive->FindInt32("_col_sp", &flag) == B_OK)
361 SetColorSpace((color_space)flag);
363 if (archive->FindInt32("_max", &flag) == B_OK)
364 SetMaxBytes(flag);
366 if (archive->FindInt32("_sel", &flag) == B_OK &&
368 Select(flag, flag2);
5429 Set font rotation to 0, removes any font flag, se
[all...]
H A DColorControl.cpp538 rgb_color baseColor, rgb_color compColor, int16 flag, bool focused,
537 _DrawColorRamp(BRect rect, BView* target, rgb_color baseColor, rgb_color compColor, int16 flag, bool focused, BRect updateRect) argument
H A DButton.cpp259 BButton::MakeDefault(bool flag) argument
267 if (flag) {
717 BButton::_Flag(uint32 flag) const
719 return (fFlags & flag) != 0;
724 BButton::_SetFlag(uint32 flag, bool set) argument
726 if (((fFlags & flag) != 0) == set)
730 fFlags |= flag;
732 fFlags &= ~flag;
/haiku/src/apps/mail/
H A DMailWindow.h114 read_flags flag);
H A DMailWindow.cpp269 read_flags flag; local
270 read_read_attr(file, flag);
272 if (flag == B_UNREAD) {
908 TMailWindow::MarkMessageRead(entry_ref* message, read_flags flag) argument
921 write_read_attr(node, flag);
926 BMailDaemon().MarkAsRead(account, *message, flag);
1251 read_flags flag = (fAutoMarkRead == true) ? B_READ : B_SEEN; local
1252 MarkMessageRead(fRef, flag);
3310 read_flags flag = B_UNREAD; local
3311 read_read_attr(node, flag);
[all...]
H A DContent.cpp3044 TTextView::WindowActivated(bool flag)
3046 if (!flag) {
3064 BTextView::WindowActivated(flag);
/haiku/src/apps/haikudepot/server/
H A DAbstractServerProcess.cpp61 AbstractServerProcess::HasOption(uint32 flag) argument
63 return (fOptions & flag) == flag;
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntries.cpp183 fUseUTF8 = value.flag;
365 fDeclaration = value.flag;
652 fDeclaration = value.flag;
913 fArtificial = value.flag;
1268 fPrototyped = value.flag;
1578 fThreadsScaled = value.flag;
2045 fPrototyped = value.flag;
2100 fArtificial = value.flag;
2346 fIsExternal = value.flag;
H A DAttributeValue.h23 bool flag; member in union:AttributeValue::__anon3
78 this->flag = value;
H A DAttributeValue.cpp28 snprintf(buffer, size, "%s", flag ? "true" : "false");
H A DAttributeClasses.cpp205 { ENTRY(flag), AC_FLAG },
/haiku/src/system/kernel/platform/openfirmware/
H A Dopenfirmware.cpp367 intptr_t flag; member in struct:__anon17
373 return args.flag;
/haiku/src/system/boot/platform/atari_m68k/
H A Dtoscalls.h530 #define Metagettoc(drive, flag, p) toscallW(XBIOS_TRAP, 62, (int16)drive, (int16)flag, (void *)p)
/haiku/headers/posix/
H A Dsignal.h233 int siginterrupt(int _signal, int flag);
/haiku/src/libs/bsd/
H A Dfts.c403 * Set the FTS_DONTCHDIR flag so that when we logically change
700 #define __opendir2(path, flag) opendir(path)
744 * but set a flag so we don't chdir after the post-order visit.
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDEndpoint.cpp178 int flag; local
204 flag = 128*1024;
205 setsockopt(fSocket, SOL_SOCKET, SO_SNDBUF, &flag, sizeof(flag));
206 setsockopt(fSocket, SOL_SOCKET, SO_RCVBUF, &flag, sizeof(flag));
281 flag = 1;
284 setsockopt(fSocket, IPPROTO_TCP, TCP_NODELAY, &flag, sizeof(flag));
285 //setsockopt(fSocket, SOL_SOCKET, SO_NONBLOCK, &flag, sizeo
[all...]
/haiku/headers/os/drivers/
H A DISA.h23 uint8 flag; // end of link flag member in struct:__anon1
26 #define B_LAST_ISA_DMA_ENTRY 0x80 // sets end of link flag
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dattrib.c86 static int NAttrFlag(ntfs_attr *na, FILE_ATTR_FLAGS flag) argument
89 return (na->ni->flags & flag);
93 static void NAttrSetFlag(ntfs_attr *na, FILE_ATTR_FLAGS flag) argument
96 na->ni->flags |= flag;
98 ntfs_log_trace("Denied setting flag %d for not unnamed data "
99 "attribute\n", le32_to_cpu(flag));
102 static void NAttrClearFlag(ntfs_attr *na, FILE_ATTR_FLAGS flag) argument
105 na->ni->flags &= ~flag;
108 #define GenNAttrIno(func_name, flag) \
109 int NAttr##func_name(ntfs_attr *na) { return NAttrFlag (na, flag); } \
[all...]
/haiku/src/servers/mail/
H A DMailDaemonApplication.cpp71 status_t MarkAsRead(const entry_ref& ref, read_flags flag) argument
75 message.AddInt32("read", flag);
/haiku/src/build/libroot/
H A Dfs.cpp162 FDPathFile(int fd, const char* path, int flag) argument
166 fFlag(flag)
189 utimensat(int fd, const char* path, const struct timespec times[2], int flag) argument
191 FDPathFile file(fd, path, flag);
1214 _haiku_build_fchmodat(int fd, const char* path, mode_t mode, int flag) argument
1217 return fchmodat(fd, path, mode, flag);
1223 (flag & AT_SYMLINK_NOFOLLOW) == 0, &st, sizeof(st), B_STAT_MODE));
1235 _haiku_build_fstatat(int fd, const char* path, struct stat* st, int flag) argument
1238 return fstatat(fd, path, st, flag);
1241 (flag
1265 _haiku_build_utimensat(int fd, const char* path, const struct timespec times[2], int flag) argument
1331 _haiku_build_faccessat(int fd, const char* path, int accessMode, int flag) argument
1429 _haiku_build_linkat(int toFD, const char* toPath, int pathFD, const char* path, int flag) argument
1439 _haiku_build_unlinkat(int fd, const char* path, int flag) argument
1496 _haiku_build_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...]

Completed in 205 milliseconds

1234567