Searched refs:fInfo (Results 1 - 25 of 76) sorted by relevance

1234

/haiku/src/kits/package/solver/
H A DSolverPackage.cpp20 fInfo(packageInfo)
28 fInfo(other.fInfo)
48 return fInfo;
55 return fInfo.Name();
62 if (fInfo.Version().InitCheck() != B_OK)
65 return result << '-' << fInfo.Version().ToString();
72 return fInfo.Version();
80 fInfo = other.fInfo;
[all...]
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerAddOn.cpp30 fInfo(new flavor_info)
35 fInfo->internal_id = 0;
36 fInfo->name = "Audio Mixer";
37 fInfo->info = "Audio Mixer media addon";
38 fInfo->kinds = B_BUFFER_PRODUCER | B_BUFFER_CONSUMER | B_SYSTEM_MIXER | B_CONTROLLABLE;
39 fInfo->flavor_flags = 0; // 0 = global or local instantiation allowed, no restrictions
40 fInfo->possible_count = 0; // 0 = infinite
41 fInfo->in_format_count = 1;
42 fInfo->in_formats = fFormat;
43 fInfo
[all...]
/haiku/src/add-ons/media/media-add-ons/videowindow/
H A DVideoAddOn.cpp25 fInfo.internal_id = 0;
26 fInfo.name = strdup("VideoWindow Consumer");
27 fInfo.info = strdup("This node displays a simple video window");
28 fInfo.kinds = B_BUFFER_CONSUMER;
29 fInfo.flavor_flags = 0;
30 fInfo.possible_count = 0;
31 fInfo.in_format_count = 1;
32 fInfo.in_format_flags = 0;
33 fInfo.in_formats = &fInputFormat;
34 fInfo
[all...]
H A DVideoAddOn.h26 flavor_info fInfo; member in class:VideoWindowAddOn
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DPort.cpp43 fInfo.owner_port = create_port(1, "port owner port");
44 if (fInfo.owner_port < 0) {
45 fInitStatus = fInfo.owner_port;
49 fInfo.client_port = create_port(1, "port client port");
50 if (fInfo.client_port < 0) {
51 fInitStatus = fInfo.client_port;
54 fInfo.size = size;
81 fInfo.owner_port = info->owner_port;
82 fInfo.client_port = info->client_port;
83 fInfo
[all...]
/haiku/src/kits/debugger/model/
H A DImage.cpp17 fInfo(imageInfo),
49 return (address >= fInfo.TextBase()
50 && address < fInfo.TextBase() + fInfo.TextSize())
51 || (address >= fInfo.DataBase()
52 && address < fInfo.DataBase() + fInfo.DataSize());
/haiku/src/bin/debug/profile/
H A DSharedImage.h69 image_info fInfo; member in class:SharedImage
81 return fInfo.name;
88 return fInfo;
109 return address >= (addr_t)fInfo.text
110 && address <= (addr_t)fInfo.data + fInfo.data_size - 1;
/haiku/src/servers/package/
H A DPackageFile.cpp27 fInfo(),
68 error = fInfo.ReadFromPackageFile(fd.Get());
72 if (fFileName != fInfo.CanonicalFileName())
73 fInfo.SetFileName(fFileName);
84 return BString().SetToFormat("%s-%s", fInfo.Name().String(),
85 fInfo.Version().ToString().String());
/haiku/src/servers/notification/
H A DAppGroupView.cpp91 label << " (" << fInfo.size() << ")";
141 int32 children = fInfo.size();
143 fInfo[i]->RemoveSelf();
144 delete fInfo[i];
147 fInfo.clear();
155 int32 children = fInfo.size();
158 if (!fInfo[i]->IsHidden())
159 fInfo[i]->Hide();
164 if (fInfo[i]->IsHidden())
165 fInfo[
[all...]
/haiku/headers/private/debugger/model/
H A DImage.h38 image_id ID() const { return fInfo.ImageID(); }
39 const BString& Name() const { return fInfo.Name(); }
40 const ImageInfo& Info() const { return fInfo; }
41 image_type Type() const { return fInfo.Type(); }
55 ImageInfo fInfo; member in class:Image
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareNode.cpp83 fInfo(),
88 fInfo = *nodeInfo;
91 fInfo.st.st_dev = -1;
92 fInfo.st.st_ino = -1;
93 fInfo.st.st_mode = S_IFDIR | S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP
95 fInfo.st.st_nlink = 1;
96 fInfo.st.st_size = 1;
97 fInfo.st.st_blksize = 1024;
98 fInfo.st.st_crtime = 0;
99 fInfo
[all...]
/haiku/src/apps/debugger/user_interface/gui/connection_config/
H A DConnectionConfigView.h26 { return fInfo; }
32 TargetHostInterfaceInfo* fInfo; member in class:ConnectionConfigView
H A DConnectionConfigView.cpp23 fInfo = info;
/haiku/src/kits/debug/
H A DImage.h31 const image_info& Info() const { return fInfo; }
32 image_id ID() const { return fInfo.id; }
33 const char* Name() const { return fInfo.name; }
35 { return (addr_t)fInfo.text; }
36 size_t TextSize() const { return fInfo.text_size; }
54 image_info fInfo; member in class:BPrivate::Debug::Image
H A DImage.cpp98 || symbol->st_size >= (size_t)fInfo.text_size + fInfo.data_size) {
202 fInfo = info;
215 fLoadDelta = (addr_t)fInfo.text - textAddress;
235 fInfo.id = -1;
236 fInfo.type = B_LIBRARY_IMAGE;
237 fInfo.sequence = 0;
238 fInfo.init_order = 0;
239 fInfo.init_routine = 0;
240 fInfo
[all...]
/haiku/headers/os/package/solver/
H A DSolverPackage.h36 BPackageInfo fInfo; member in class:BPackageKit::BSolverPackage
/haiku/src/apps/mediaconverter/
H A DMediaFileInfoView.cpp73 BString* infoStrings[5] = {&fInfo.audio.format, &fInfo.audio.details,
74 &fInfo.video.format, &fInfo.video.details, &fInfo.duration};
160 status_t result = fInfo.LoadInfo(file);
222 BString strings[5] = {fInfo.audio.format, fInfo.audio.details,
223 fInfo.video.format, fInfo
[all...]
H A DMediaFileInfoView.h39 { return fInfo.useconds; }
55 MediaFileInfo fInfo; member in class:MediaFileInfoView
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp45 fInfo(NULL),
55 fInfo(NULL),
65 fInfo(NULL),
76 fInfo(NULL),
87 fInfo(NULL),
110 if (fInfo != NULL) {
111 freeaddrinfo(fInfo);
112 fInfo = NULL;
173 portString.Length() != 0 ? portString.String() : NULL, &hint, &fInfo);
224 addrinfo* info = fInfo;
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DAttributeDirectory.cpp19 : fInfo(info)
29 fInfo.size = -info.size;
77 return (fInfo.size >= 0 ? fDataAndName : fDataAndName - fInfo.size);
85 info->type = fInfo.type;
94 return fInfo.type;
101 return (fInfo.size >= 0 ? fInfo.size : -fInfo.size);
108 return (fInfo
[all...]
/haiku/headers/os/package/
H A DRepositoryCache.h43 BRepositoryInfo fInfo; member in class:BPackageKit::BRepositoryCache
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DNFS4Object.h32 FileInfo fInfo; member in class:NFS4Object
H A DNFS4Inode.cpp30 req.PutFH(fInfo.fAttrDir);
32 req.PutFH(fInfo.fHandle);
72 req.PutFH(fInfo.fHandle);
101 req.PutFH(fInfo.fHandle);
133 req.PutFH(fInfo.fHandle);
222 req.PutFH(fInfo.fHandle);
224 req.PutFH(dir->fInfo.fHandle);
258 req.PutFH(fInfo.fHandle);
294 req.PutFH(cookie->fOpenState->fInfo.fHandle);
296 req.PutFH(fInfo
[all...]
/haiku/src/apps/packageinstaller/
H A DPackageView.h48 { return &fInfo; }
84 PackageInfo fInfo; member in class:PackageView
/haiku/src/kits/debugger/debugger_interface/
H A DDebugEvent.h183 const ImageInfo& GetImageInfo() const { return fInfo; }
186 ImageInfo fInfo; member in class:ImageCreatedEvent
195 const ImageInfo& GetImageInfo() const { return fInfo; }
198 ImageInfo fInfo; member in class:ImageDeletedEvent
208 const SyscallInfo& GetSyscallInfo() const { return fInfo; }
211 SyscallInfo fInfo; member in class:PostSyscallEvent
233 const SignalInfo& GetSignalInfo() const { return fInfo; }
236 SignalInfo fInfo; member in class:SignalReceivedEvent

Completed in 109 milliseconds

1234