Searched refs:group (Results 101 - 125 of 304) sorted by relevance

1234567891011>>

/haiku/src/apps/mail/
H A DAddressTextControl.cpp90 void _AddGroup(const char* label, const char* group,
93 const char* group,
96 const char* group);
499 BString group = groupList.GroupAt(index); local
500 _AddGroup(group, group, peopleList);
510 AddressPopUpMenu::_AddGroup(const char* label, const char* group, argument
517 _AddPeople(menu, peopleList, group);
523 const char* group, bool addSeparator)
527 if (!_MatchesGroup(*person, group))
522 _AddPeople(BMenu* menu, PersonList& peopleList, const char* group, bool addSeparator) argument
552 _MatchesGroup(const Person& person, const char* group) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DVolume.cpp365 ext2_block_group* group; local
367 &group);
371 block = group->InodeTable(Has64bitFeature())
446 Volume::_GroupCheckSum(ext2_block_group *group, int32 index) argument
455 checksum = calculate_crc32c(checksum, (uint8*)group, offset);
458 checksum = calculate_crc32c(checksum, (uint8*)group + offsetExt4,
466 checksum = calculate_crc(checksum, (uint8*)group, offset);
468 checksum = calculate_crc(checksum, (uint8*)group + offsetExt4,
477 /*! Makes the requested block group available.
504 TRACE("group [
[all...]
/haiku/src/tests/add-ons/print/ppd/parser/
H A DPPDParser.cpp217 Error("Missing group ID in open statement");
299 GroupStatement group(statement.Get());
300 if (group.IsOpenGroup()) {
302 if (!IsValidOpenStatement(&group)) {
312 if (group.IsCloseGroup()) {
315 if (!IsValidCloseStatement(&group)) {
/haiku/src/tests/add-ons/translators/
H A DTranslatorTestAddOn.cpp73 CheckTranslatorInfo(translator_info *pti, uint32 type, uint32 group, argument
78 CPPUNIT_ASSERT(pti->group == group);
99 if (pleft->group != pright->group)
/haiku/src/tests/system/network/multicast/
H A Dmultisend.c24 int open_multicast_socket(const char *group, const char *port,
100 int open_multicast_socket(const char *group, const char *port, argument
115 if ((err = getaddrinfo(group, port, &hints, &res)) != 0)
179 if ((hostinfo = gethostbyname(group)) == NULL)
180 err_quit("Host %s not found.", group);
H A Dmulticat.c31 struct in_addr imr_multiaddr; /* multicast group */
42 struct sockaddr_storage gr_group; /* group address */
46 struct sockaddr_storage gsr_group; /* group address */
60 static int open_multicast_socket(const char *group, const char *port,
209 static int open_multicast_socket(const char *group, const char *port, argument
225 if ((err = getaddrinfo(group, port, &hints, &res)) != 0)
286 if ((hostinfo = gethostbyname(group)) == NULL)
287 err_quit("Host %s not found.", group);
290 err_quit("%s is not a multicast address", group);
350 " -s, --source=ADDR join the SSM source group ADD
[all...]
/haiku/src/kits/storage/
H A DStatable.cpp130 // Fills out the node's GID into group.
132 BStatable::GetGroup(gid_t* group) const
134 status_t result = (group ? B_OK : B_BAD_VALUE);
141 *group = stat.st_gid;
147 // Sets the node's GID to group.
149 BStatable::SetGroup(gid_t group) argument
152 stat.st_gid = group;
/haiku/src/system/kernel/arch/ppc/paging/460/
H A DPPCPagingMethod460.cpp245 page_table_entry_group *group = &fPageTable[hash & fPageTableHashMask]; local
248 // 8 entries in a group
249 if (group->entry[i].valid)
252 FillPageTableEntry(&group->entry[i], virtualSegmentID,
258 group = &fPageTable[hash & fPageTableHashMask];
261 if (group->entry[i].valid)
264 FillPageTableEntry(&group->entry[i], virtualSegmentID,
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCPagingMethodClassic.cpp245 page_table_entry_group *group = &fPageTable[hash & fPageTableHashMask]; local
248 // 8 entries in a group
249 if (group->entry[i].valid)
252 FillPageTableEntry(&group->entry[i], virtualSegmentID,
258 group = &fPageTable[hash & fPageTableHashMask];
261 if (group->entry[i].valid)
264 FillPageTableEntry(&group->entry[i], virtualSegmentID,
/haiku/src/build/libroot/
H A Dremapped_functions.h37 int _haiku_build_fchown(int fd, uid_t owner, gid_t group);
39 gid_t group, int flag);
H A Dfunction_remapper.cpp178 fchown(int fd, uid_t owner, gid_t group) argument
182 return _haiku_build_fchown(fd, owner, group);
187 fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag) argument
191 return _haiku_build_fchownat(fd, path, owner, group, flag);
H A Dfs_darwin.cpp83 // user is in owning group
184 fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag) argument
194 return (flag & AT_SYMLINK_NOFOLLOW) != 0 ? lchown(path, owner, group)
195 : chown(path, owner, group);
208 return (flag & AT_SYMLINK_NOFOLLOW) != 0 ? lchown(fullPath, owner, group)
209 : chown(fullPath, owner, group);
/haiku/src/add-ons/media/media-add-ons/demultiplexer/
H A DMediaOutputInfo.h23 virtual status_t SetBufferGroup(BBufferGroup * group);
/haiku/src/apps/cortex/NodeManager/
H A DNodeManager.h41 // A new group is created with the following information:
45 // New nodes can be added to a group via NodeGroup methods. When a
46 // node is added to a group, it will automatically be assigned the
47 // group's time source. Unless the node has a run mode set, it will
48 // also be assigned the group's run mode. (If the group is in B_OFFLINE
50 // else.) If a node is added to a group whose transport is running, it
149 public: // *** default group names
290 // this ensures that the group set won't change. The methods do lock
291 // the group internall
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf.h45 unsigned int group:1; /* ' flag. */ member in struct:printf_info
/haiku/headers/glibc/
H A Dprintf.h45 unsigned int group:1; /* ' flag. */ member in struct:printf_info
/haiku/src/kits/media/legacy/
H A DDeprecated.cpp63 BBufferGroup* group, bool willReclaim)
62 SetOutputBuffersFor(const media_source& output, BBufferGroup* group, bool willReclaim) argument
/haiku/src/bin/bfs_tools/lib/
H A Dbfs.h28 inline void SetTo(int32 group, uint16 start, uint16 length = 1);
30 inline static block_run Run(int32 group, uint16 start, uint16 length = 1);
223 inline block_run block_run::Run(int32 group, uint16 start, uint16 length) argument
226 run.allocation_group = group;
/haiku/headers/private/shared/
H A DExpressionParser.h53 status_t SetSeparators(BString decimal, BString group);
/haiku/src/bin/
H A Dtranslate.cpp121 print_tupel("(%s) ", format.group);
354 uint32 group = 0; local
363 group = infos[0].group;
374 group = format->group;
416 if (formats[j].group != group || typesSeen.FindType(formats[j].type))
598 if (inputFormats[j].group == type || inputFormats[j].type == type) {
605 if (outputFormats[j].group
[all...]
/haiku/src/system/boot/platform/openfirmware/arch/ppc/
H A Dmmu.cpp242 page_table_entry_group *group = &sPageTable[hash & sPageTableHashMask]; local
245 // 8 entries in a group
246 if (group->entry[i].valid)
249 fill_page_table_entry(&group->entry[i], virtualSegmentID,
257 group = &sPageTable[hash & sPageTableHashMask];
260 if (group->entry[i].valid)
263 fill_page_table_entry(&group->entry[i], virtualSegmentID,
632 page_table_entry_group *group = &sPageTable[hash & sPageTableHashMask]; local
636 entry = &group->entry[i];
646 group
[all...]
/haiku/src/kits/app/
H A DNotification.cpp80 BString group; local
81 if (archive->FindString("_group", &group) == B_OK)
82 SetGroup(group);
256 BNotification::SetGroup(const BString& group) argument
258 fGroup = group;
/haiku/src/servers/app/stackandtile/
H A DSATGroup.h104 Tab(SATGroup* group, Variable* variable,
145 bool Init(SATGroup* group);
179 bool PropagateToGroup(SATGroup* group);
204 // Find crossing by tab position in group and if not exist create
207 SATGroup* group);
316 void _EnsureGroupIsOnScreen(SATGroup* group);
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLoggingConsumer.cpp68 BParameterGroup* group = mainGroup->MakeGroup( local
70 BParameter* nullParam = group->MakeNullParameter(INPUT_NULL_PARAM,
72 BParameter* latencyParam = group->MakeContinuousParameter(LATENCY_PARAM,
77 group = mainGroup->MakeGroup(B_TRANSLATE("CPU percentage"));
78 nullParam = group->MakeNullParameter(CPU_NULL_PARAM, B_MEDIA_NO_TYPE,
80 BContinuousParameter* cpuParam = group->MakeContinuousParameter(
86 group = mainGroup->MakeGroup(B_TRANSLATE("Priority"));
87 nullParam = group->MakeNullParameter(PRIO_NULL_PARAM, B_MEDIA_NO_TYPE,
89 BDiscreteParameter* prioParam = group->MakeDiscreteParameter(PRIORITY_PARAM,
/haiku/src/system/libroot/posix/
H A Dpwd_query.c49 static const char *B_GR_GID = "sys:group:gid";
50 static const char *B_GR_NAME = "sys:group:name";
51 //static const char *B_GR_PASSWD = "sys:group:passwd";
62 static const char *Q_GR_ALL = "sys:group:gid>-1";
63 static const char *QT_GR_GID = "sys:group:gid==%d";
64 static const char *QT_GR_NAM = "sys:group:name==\"%s\"";
87 char grfile[B_PATH_NAME_LENGTH+1]; /* current group's cached file path */
90 struct group grent;
129 /* group stuff */
131 int fill_grent_default(struct group *gbu
[all...]

Completed in 134 milliseconds

1234567891011>>