Searched refs:infos (Results 51 - 75 of 80) sorted by last modified time

1234

/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dmodule.cpp194 module_info **infos = NULL; local
197 (void**)&infos) == B_OK
198 && infos != NULL) {
200 fInfos = infos;
619 module_info **infos = addon.ModuleInfos(); local
620 for (int32 i = 0; infos[i]; i++) {
621 if (infos[i]->name
622 && _MatchSuffix(infos[i]->name, suffix))
623 list->names.insert(infos[i]->name);
/haiku/src/bin/
H A Dtranslate.cpp350 translator_info *infos = NULL; local
360 status = fRoster->GetTranslators(&stream, NULL, &infos, &count);
362 inFormat = infos[0].type;
363 group = infos[0].group;
368 printf("%s\n", infos[0].name);
377 delete[] infos;
393 int32 id = ids ? ids[i] : infos[i].translator;
448 delete[] infos;
/haiku/src/add-ons/kernel/cpu/x86/
H A Dgeneric_x86.cpp176 generic_set_mtrrs(uint8 newDefaultType, const x86_mtrr_info* infos, argument
193 set_mtrr(i, infos[i].base, infos[i].size, infos[i].type);
H A Damd.cpp43 amd_set_mtrrs(uint8 defaultType, const x86_mtrr_info* infos, uint32 count) argument
45 generic_set_mtrrs(defaultType, infos, count, generic_count_mtrrs());
H A Dintel.cpp37 intel_set_mtrrs(uint8 defaultType, const x86_mtrr_info* infos, uint32 count) argument
39 generic_set_mtrrs(defaultType, infos, count, generic_count_mtrrs());
H A Dvia.cpp35 via_set_mtrrs(uint8 defaultType, const x86_mtrr_info* infos, uint32 count) argument
37 generic_set_mtrrs(defaultType, infos, count, via_count_mtrrs());
/haiku/headers/os/package/
H A DInstallationLocationInfo.h38 const BPackageInfoSet& infos);
42 const BPackageInfoSet& infos);
46 const BPackageInfoSet& infos);
/haiku/src/kits/package/
H A DInstallationLocationInfo.cpp102 const BPackageInfoSet& infos)
104 fLatestActivePackageInfos = infos;
117 const BPackageInfoSet& infos)
119 fLatestInactivePackageInfos = infos;
132 const BPackageInfoSet& infos)
134 fCurrentlyActivePackageInfos = infos;
101 SetLatestActivePackageInfos( const BPackageInfoSet& infos) argument
116 SetLatestInactivePackageInfos( const BPackageInfoSet& infos) argument
131 SetCurrentlyActivePackageInfos( const BPackageInfoSet& infos) argument
/haiku/headers/private/package/
H A Dpackagefs.h73 PackageFSPackageInfo infos[1]; member in struct:PackageFSGetPackageInfosRequest
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp672 void ExpectNotifications(MonitoringInfoSet infos) argument
677 while (!infos.IsEmpty()) {
689 indented_string(infos.ToString(), " ").String());
696 for (int32 i = 0; i < infos.CountInfos(); i++) {
697 const MonitoringInfo& info = infos.InfoAt(i);
699 infos.Remove(i);
710 indented_string(infos.ToString(), " ").String(),
/haiku/src/tests/add-ons/kernel/network/
H A Duserland_modules.cpp50 module_info ** infos; // valid only when addon_image != -1 member in struct:module_addon
325 mlc->mi = mlc->ma->infos;
460 ma->infos = mi;
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DGroupView.h36 void _LayoutLine(int32 size, LayoutInfo* infos,
/haiku/src/tests/kits/storage/
H A DAppFileInfoTest.cpp687 version_info infos[] = { value.app, value.system }; local
689 infos, sizeof(infos));
694 version_info infos[] = { value.app, value.system }; local
697 infos, sizeof(infos));
2202 // get both infos
2260 // * NULL info => unsets both infos, B_OK
2281 // reset the infos
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DDirectory.cpp96 status_t _UpdateOrInsertKey(LevelInfo* infos,
101 status_t _InsertEntryIncrementDepth(LevelInfo* infos,
633 LevelInfo* infos = new(std::nothrow) LevelInfo[ local
635 if (infos == NULL)
637 ArrayDeleter<LevelInfo> infosDeleter(infos);
639 infos[0].entryBlock.SetTo(fRootEntryBlock, fRootEntryBlockSize);
640 ASSERT(infos[0].entryBlock.Check());
644 LevelInfo& info = infos[level];
673 LevelInfo& nextInfo = infos[level + 1];
685 if (infos[dept
769 LevelInfo* infos = new(std::nothrow) LevelInfo[ local
860 LevelInfo* infos = new(std::nothrow) LevelInfo[ local
1104 _UpdateOrInsertKey(LevelInfo* infos, int32 level, const char* name, size_t nameLength, uint64 blockIndex, bool insertKey, Transaction& transaction) argument
[all...]
H A DFile.cpp328 // get the level infos
330 LevelInfo* infos = _GetLevelInfos(fileBlockCount, depth); local
331 if (infos == NULL)
333 ArrayDeleter<LevelInfo> infosDeleter(infos);
342 LevelInfo& info = infos[i];
367 LevelInfo& info = infos[level];
375 infos[level].index++;
388 if (!infos[level].block.GetReadable(GetVolume(), blockIndex))
391 infos[level].blockData = (uint64*)infos[leve
451 _UpdateLevelInfos(LevelInfo* infos, int32 levelCount, uint64 blockCount) argument
472 LevelInfo* infos = new(std::nothrow) LevelInfo[kFileMaxTreeDepth]; local
493 LevelInfo* infos = _GetLevelInfos(blockCount, depth); local
603 LevelInfo* infos = _GetLevelInfos(blockCount, depth); local
[all...]
H A DFile.h47 static void _UpdateLevelInfos(LevelInfo* infos,
/haiku/src/tests/system/kernel/
H A Dwait_for_objects_test.cpp36 print_events(const object_wait_info* infos, int infoCount) argument
40 printf(" %d: 0x%x\n", i, infos[i].events);
98 object_wait_info infos[infoCount]; local
99 memcpy(infos, initialInfos, sizeof(initialInfos));
101 ssize_t result = wait_for_objects_etc(infos, infoCount,
109 print_events(infos, infoCount);
112 int32 type = infos[i].type;
113 int32 object = infos[i].object;
114 uint16 events = infos[i].events;
/haiku/src/system/libroot/os/
H A Dwait_for_objects.cpp12 wait_for_objects(object_wait_info* infos, int numInfos) argument
14 return _kern_wait_for_objects(infos, numInfos, 0, 0);
19 wait_for_objects_etc(object_wait_info* infos, int numInfos, uint32 flags, argument
22 return _kern_wait_for_objects(infos, numInfos, flags, timeout);
/haiku/src/apps/terminal/
H A DTerminalRoster.cpp122 // If the check interval has passed, make sure all infos still have running
156 // the infos have changed -- notify our listener
189 // get the current infos from the clipboard
253 // lock the clipboard and get the current infos
295 // lock the clipboard and get the current infos
323 // lock ourselves and the clipboard and update the infos
357 // find out how many infos we can expect
365 InfoList infos(10, true);
378 || infos.BinarySearchByKey(info->id, &_CompareIDInfo) != NULL
387 if (!infos
[all...]
/haiku/src/bin/debug/time_stats/
H A Dtiming_analysis.cpp39 get_usage_infos(thread_info* infos) argument
47 while (get_next_thread_info(teamInfo.team, &threadCookie, &infos[count])
103 // sort the infos, so we can compare them better
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DPortConnection.cpp110 PortChannel::Info* infos = new(std::nothrow) local
112 if (!infos)
114 ArrayDeleter<PortChannel::Info> _(infos);
131 otherChannel->GetInfo(infos + i - 1);
133 // send the infos to the server
134 error = channel->Send(infos, sizeof(PortChannel::Info) * (allChannels - 1));
156 // receive the channel infos
158 PortChannel::Info* infos = new(std::nothrow) local
160 if (!infos)
162 ArrayDeleter<PortChannel::Info> _(infos);
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequest.cpp49 Request::GetAddressInfos(AddressInfo* infos, int32* count) argument
/haiku/src/add-ons/media/media-add-ons/
H A DAbstractFileInterfaceAddOn.cpp68 flavor_info * infos = new flavor_info[1]; local
69 AbstractFileInterfaceNode::GetFlavor(&infos[0],n);
70 (*out_info) = infos;
/haiku/src/add-ons/media/media-add-ons/demultiplexer/
H A DMediaDemultiplexerAddOn.cpp69 flavor_info * infos = new flavor_info[1]; local
70 MediaDemultiplexerNode::GetFlavor(&infos[0],n);
71 (*out_info) = infos;
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDSinkAddOn.cpp124 flavor_info * infos = new flavor_info[1]; local
125 ESDSinkNode::GetFlavor(&infos[0], n);
126 // infos[0].name = device->MD.friendly_name;
127 (*out_info) = infos;

Completed in 130 milliseconds

1234