Searched refs:version (Results 76 - 100 of 346) sorted by relevance

1234567891011>>

/haiku/src/libs/libfdt/
H A DMakefile.libfdt9 LIBFDT_VERSION = version.lds
H A Dfdt.c69 size_t fdt_header_size_(uint32_t version) argument
71 if (version <= 1)
73 else if (version <= 2)
75 else if (version <= 3)
77 else if (version <= 16)
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DVersion.cpp86 Version* version = new(std::nothrow) Version; local
87 if (version == NULL)
90 status_t error = version->Init(major, minor, micro, preRelease, revision);
92 delete version;
96 _version = version;
116 // The pre-version works differently: The empty string is greater than any
165 // We need to normalize the version string somewhat. If a subpart is given,
167 // avoids clashes, e.g. if one version defines major and minor and one only
/haiku/src/preferences/datatranslations/
H A DDataTranslationsWindow.cpp104 int32 version; local
107 roster->GetTranslatorInfo(translators[i], &name, &info, &version);
123 const char*& info, int32& version, BPath& path)
131 if (roster->GetTranslatorInfo(id, &name, &info, &version) != B_OK)
299 int32 version = 0; local
300 _GetTranslatorInfo(id, name, info, version, path);
315 // Convert the version number into a readable format
317 B_TRANSLATION_MAJOR_VERSION(version),
318 B_TRANSLATION_MINOR_VERSION(version),
319 B_TRANSLATION_REVISION_VERSION(version));
122 _GetTranslatorInfo(int32 id, const char*& name, const char*& info, int32& version, BPath& path) argument
391 int32 version = 0; local
419 int32 version; local
[all...]
H A DDataTranslationsWindow.h39 const char*& info, int32& version, BPath& path);
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.cpp45 // current format version types
253 ::Version* version; local
254 status_t error = Version::Create(value.version.major,
255 value.version.minor, value.version.micro,
256 value.version.preRelease, value.version.revision, version);
260 fPackage->SetVersion(version);
278 // create a version objec
279 ::Version* version = NULL; local
336 ::Version* version = NULL; local
599 SetVersion(::Version* version) argument
[all...]
/haiku/src/apps/packageinstaller/
H A DInstalledPackageInfo.cpp59 info_get_package_version(const char *filename, BString &version) argument
65 ret = info.FindString("package_version", &version);
82 const char *version, bool create)
89 SetTo(packageName, version, create);
107 InstalledPackageInfo::SetTo(const char *packageName, const char *version, argument
114 fVersion = version;
143 filename << version << ".pdb"; local
81 InstalledPackageInfo(const char *packageName, const char *version, bool create) argument
H A DUninstallView.cpp59 InfoItem(const BString& name, const BString& version, argument
64 fVersion(version),
150 BString filename, name, version; local
396 BString version; local
397 ret = info_get_package_version(filename, version);
398 if (ret != B_OK || version.Length() == 0) {
399 fprintf(stderr, "Error extracting package version: %s\n",
402 fAppList->AddItem(new InfoItem(name, version, filename, ref));
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_common.h22 /** Major version of FUSE library interface */
25 /** Minor version of FUSE library interface */
43 * Changed in version 2.5
57 Introduced in version 2.4 */
61 need not be invalidated. Introduced in version 2.4 */
66 operation. Introduced in version 2.6 */
70 seekable. Introduced in version 2.8 */
75 May only be set in ->release(). Introduced in version
148 * Major version of the protocol (read-only)
153 * Minor version o
[all...]
/haiku/src/add-ons/accelerants/common/
H A Ddecode_edid.c44 decode_version(edid1_version *version, const edid1_version_raw *raw) argument
46 version->version = raw->version;
47 version->revision = raw->revision;
285 edid->displayid_block.version = raw->version;
301 decode_version(&edid->version, &raw->version);
311 edid->version
[all...]
/haiku/headers/private/graphics/common/
H A Dedid.h22 // version info
24 uint8 version; member in struct:__anon83
60 // since EDID version 1.1
148 uint8 version; member in struct:displayid_info
155 edid1_version version; member in struct:edid1_info
160 // since EDID version 1.2
/haiku/headers/os/drivers/pcmcia/
H A Dcb_enabler.h19 * terms of the GNU General Public License version 2 (the "GPL"), in
21 * above. If you wish to allow the use of your version of this file
23 * your version of this file under the MPL, indicate your decision by
26 * provisions above, a recipient may use your version of this file
38 #include <pcmcia/version.h>
/haiku/headers/private/kernel/arch/x86/
H A Dapm.h40 uint16 version; member in struct:apm_info
/haiku/src/system/boot/loader/file_systems/hfs_plus/
H A Dhfs_plus.h33 uint16 version; member in struct:HFSPlus::hfs_volume_header
/haiku/src/tests/system/kernel/file_corruption/
H A Dchecksumfs.h30 uint32 version; member in struct:checksumfs_super_block
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DSuperBlock.cpp41 version = kCheckSumFSVersion;
/haiku/src/add-ons/kernel/network/ppp/pppoe/
H A DPPPoE.h53 uint8 version : 4; member in struct:pppoe_header
/haiku/headers/libs/libfdt/
H A Dfdt.h18 fdt32_t version; /* format version */ member in struct:fdt_header
19 fdt32_t last_comp_version; /* last compatible version */
21 /* version 2 fields below */
24 /* version 3 fields below */
27 /* version 17 fields below */
50 #define FDT_MAGIC 0xd00dfeed /* 4: version, 4: total size */
/haiku/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_elantech.h28 uint32 version; member in struct:__anon12
/haiku/src/libs/bsd/
H A Dwait.c71 #define DEFINE_LIBBSD_SYMBOL_VERSION(function, symbol, version) \
72 B_DEFINE_SYMBOL_VERSION(function, symbol "LIBBSD_" version)
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DVolume.cpp51 int version = B_BENDIAN_TO_HOST_INT16(superBlock->Version()) & XFS_SB_VERSION_NUMBITS; local
55 && (version == 5 || superBlock->Crc() != 0)) {
/haiku/src/add-ons/accelerants/intel_810/
H A Dmode.cpp99 if (rawEdid.version.version != 1 || rawEdid.version.revision > 4) {
100 TRACE("CreateModeList(); EDID version %d.%d out of range\n",
101 rawEdid.version.version, rawEdid.version.revision);
/haiku/src/tools/translation/stxtinfo/
H A Dstxtinfo.cpp63 uint32 version; // 0 member in struct:StylesHeader
157 printf("version: 0x%.8lx ",
158 static_cast<unsigned long>(stylesheader.version));
159 if (stylesheader.version == 0)
233 printf("version: %d ",
234 static_cast<int>(stxtheader.version));
235 if (stxtheader.version == 100)
370 printf("version: 0x%.8lx ",
371 static_cast<unsigned long>(stylesheader.version));
372 if (stylesheader.version
[all...]
/haiku/src/kits/interface/
H A DAboutWindow.cpp85 status_t SetVersion(const char* version);
177 fVersionView = new BStringView("version",
260 const char* version = B_TRANSLATE_MARK("Version"); local
261 version = gSystemCatalog.GetString(version, "AboutWindow");
262 BString appVersion(version);
267 // Add the version variety
372 AboutView::SetVersion(const char* version) argument
374 fVersionView->SetText(version);
638 BAboutWindow::SetVersion(const char* version) argument
[all...]
/haiku/src/system/kernel/
H A Dsyscalls.cpp66 uint32 version; member in struct:generic_syscall
143 // retrieve old version
146 if (requestedVersion != 0 && requestedVersion < syscall->version)
149 // return current version
150 return user_memcpy(buffer, &syscall->version, sizeof(uint32));
247 uint32 version, uint32 flags)
257 || version < previous->version) {
270 syscall->version = version;
246 register_generic_syscall(const char* subsystem, syscall_hook hook, uint32 version, uint32 flags) argument
287 unregister_generic_syscall(const char* subsystem, uint32 version) argument
[all...]

Completed in 124 milliseconds

1234567891011>>