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

1234

/haiku-fatelf/src/add-ons/media/media-add-ons/mixer/
H A DMixerAddOn.cpp30 fInfo(new flavor_info)
36 fInfo->internal_id = 0;
37 fInfo->name = (char *)"Audio Mixer (Haiku)";
38 fInfo->info = (char *)"Haiku Audio Mixer media addon";
39 fInfo->kinds = B_BUFFER_PRODUCER | B_BUFFER_CONSUMER | B_SYSTEM_MIXER | B_CONTROLLABLE;
40 fInfo->flavor_flags = 0; // 0 = global or local instantiation allowed, no restrictions
41 fInfo->possible_count = 0; // 0 = infinite
42 fInfo->in_format_count = 1;
43 fInfo->in_formats = fFormat;
44 fInfo
[all...]
/haiku-fatelf/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-fatelf/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-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/private/
H A DPort.cpp33 fInfo.owner_port = create_port(1, "port owner port");
34 if (fInfo.owner_port < 0) {
35 fInitStatus = fInfo.owner_port;
39 fInfo.client_port = create_port(1, "port client port");
40 if (fInfo.client_port < 0) {
41 fInitStatus = fInfo.client_port;
44 fInfo.size = size;
69 fInfo.owner_port = info->owner_port;
70 fInfo.client_port = info->client_port;
71 fInfo
[all...]
/haiku-fatelf/src/apps/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());
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-fatelf/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-fatelf/src/servers/notification/
H A DAppGroupView.cpp88 label << " (" << fInfo.size() << ")";
134 int32 children = fInfo.size();
136 GetLayout()->RemoveView(fInfo[i]);
137 delete fInfo[i];
140 fInfo.clear();
148 int32 children = fInfo.size();
151 if (!fInfo[i]->IsHidden())
152 fInfo[i]->Hide();
157 if (fInfo[i]->IsHidden())
158 fInfo[
[all...]
/haiku-fatelf/src/add-ons/opengl/swpipe/
H A DSoftwareRenderer.cpp50 fInfo(NULL),
118 if (fDirectModeEnabled && fInfo != NULL) {
119 fNewWidth = fInfo->window_bounds.right - fInfo->window_bounds.left;
121 fNewHeight = fInfo->window_bounds.bottom - fInfo->window_bounds.top;
165 if (!fDirectModeEnabled || fInfo == NULL) {
176 if (fInfo->window_bounds.bottom - fInfo->window_bounds.top
178 || fInfo
[all...]
/haiku-fatelf/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-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DShareNode.cpp80 fInfo(),
85 fInfo = *nodeInfo;
88 fInfo.st.st_dev = -1;
89 fInfo.st.st_ino = -1;
90 fInfo.st.st_mode = S_IFDIR | S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP
92 fInfo.st.st_nlink = 1;
93 fInfo.st.st_size = 1;
94 fInfo.st.st_blksize = 1024;
95 fInfo.st.st_crtime = 0;
96 fInfo
[all...]
/haiku-fatelf/src/kits/debug/
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...]
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
/haiku-fatelf/src/add-ons/media/plugins/musepack/
H A DMusePackReader.cpp48 int error = fInfo.ReadStreamInfo(file);
98 fDecoder->SetStreamInfo(&fInfo);
106 fFormat.u.encoded_audio.output.frame_rate = fInfo.simple.SampleFreq;
107 fFormat.u.encoded_audio.output.channel_count = fInfo.simple.Channels;
132 *_frameCount = FRAMELEN * (int64)fInfo.simple.Frames;
133 *_duration = bigtime_t(1000.0 * fInfo.simple.Frames * FRAMELEN
134 / (fInfo.simple.SampleFreq / 1000.0) + 0.5);
H A DMusePackDecoder.h34 StreamInfo *fInfo; member in class:MusePackDecoder
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A DFileSystem.cpp20 fInfo(NULL),
37 fInfo(info),
54 delete fInfo;
68 return fInfo;
83 fInfo = info;
143 return (fInfo ? B_OK : B_ERROR);
H A DFileSystem.h36 FSInfo* fInfo; member in class:UserlandFS::FileSystem
/haiku-fatelf/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 ret = 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-fatelf/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp41 fInfo(NULL),
50 fInfo(NULL),
59 fInfo(NULL),
69 fInfo(NULL),
79 fInfo(NULL),
102 if (fInfo != NULL) {
103 freeaddrinfo(fInfo);
104 fInfo = NULL;
165 portString.Length() != 0 ? portString.String() : NULL, &hint, &fInfo);
216 addrinfo* info = fInfo;
[all...]
/haiku-fatelf/src/add-ons/opengl/swrast/
H A DMesaSoftwareRenderer.cpp70 fInfo(NULL),
207 free(fInfo);
228 if (fDirectModeEnabled && fInfo != NULL) {
229 width = fInfo->window_bounds.right
230 - fInfo->window_bounds.left + 1;
231 height = fInfo->window_bounds.bottom
232 - fInfo->window_bounds.top + 1;
266 if (!fDirectModeEnabled || fInfo == NULL) {
287 if (fBitmap && (!fDirectModeEnabled || (fInfo == NULL)))
385 if (!fInfo) {
[all...]
/haiku-fatelf/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-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DAttributeDirectory.cpp18 : fInfo(info)
28 fInfo.size = -info.size;
76 return (fInfo.size >= 0 ? fDataAndName : fDataAndName - fInfo.size);
84 info->type = fInfo.type;
93 return fInfo.type;
100 return (fInfo.size >= 0 ? fInfo.size : -fInfo.size);
107 return (fInfo
[all...]
/haiku-fatelf/headers/os/package/
H A DRepositoryCache.h44 BRepositoryInfo fInfo; member in class:BPackageKit::BRepositoryCache

Completed in 373 milliseconds

1234