Searched refs:GetInfo (Results 1 - 25 of 145) sorted by path

123456

/haiku/headers/build/os/app/
H A DMessage.h59 status_t GetInfo(type_code typeRequested, int32 index,
62 status_t GetInfo(const char *name, type_code *typeFound,
64 status_t GetInfo(const char *name, type_code *typeFound,
/haiku/headers/os/app/
H A DMessageRunner.h32 status_t GetInfo(bigtime_t* interval,
/haiku/headers/private/debugger/model/
H A DStackFrameValueInfos.h27 bool GetInfo(ObjectID* variable,
32 inline bool GetInfo(ObjectID* variable,
63 StackFrameValueInfos::GetInfo(ObjectID* variable, const TypeComponentPath& path, function in class:StackFrameValueInfos
66 return GetInfo(variable, &path, _type, _location);
/haiku/headers/private/device/
H A DJoystickTweaker.h42 status_t GetInfo(_joystick_info* info, const char *ref);
/haiku/headers/private/kernel/
H A DUserTimer.h46 virtual void GetInfo(bigtime_t& _remainingTime,
75 virtual void GetInfo(bigtime_t& _remainingTime,
114 virtual void GetInfo(bigtime_t& _remainingTime,
150 virtual void GetInfo(bigtime_t& _remainingTime,
174 virtual void GetInfo(bigtime_t& _remainingTime,
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskSystem.h44 void GetInfo(user_disk_system_info* info);
/haiku/headers/private/userlandfs/private/
H A DPort.h34 const Info* GetInfo() const;
/haiku/src/add-ons/input_server/methods/pen/
H A DDumpMessage.cpp112 for (int which=0; message->GetInfo(B_ANY_TYPE, which,
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareAttrDir.cpp121 // GetInfo
123 Attribute::GetInfo(attr_info* info) const function in class:Attribute
H A DShareAttrDir.h27 void GetInfo(attr_info* info) const;
H A DShareVolume.cpp1915 attribute->GetInfo(attrInfo);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DPortChannel.h25 void GetInfo(Info* info) const;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DAttributeDirectory.cpp80 // GetInfo
82 Attribute::GetInfo(attr_info* info) const function in class:Attribute
290 attribute->GetInfo(_info);
H A DAttributeDirectory.h31 void GetInfo(attr_info* info) const;
H A DSecurityContext.cpp438 permissionsArchive.GetInfo(B_MESSAGE_TYPE, userIndex, &userName, &type)
456 userArchive.GetInfo(B_INT32_TYPE, i, &path, &type) == B_OK;
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DPortChannel.cpp69 // GetInfo
71 PortChannel::GetInfo(Info* info) const function in class:PortChannel
H A DPortConnection.cpp94 channel->GetInfo(&request.channelInfo);
131 otherChannel->GetInfo(infos + i - 1);
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DPort.cpp125 // GetInfo
127 Port::GetInfo() const function in class:Port
H A DRequestPort.cpp70 return fPort.GetInfo();
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DMessageDriverSettingsUtils.cpp200 parameter.GetInfo(MDSU_PARAMETERS, &type, &parameterCount);
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp328 status_t status = message.GetInfo("ref", &type, &count);
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPEDecompress.cpp20 if (GetInfo(APE_INFO_FILE_VERSION) < 3930)
27 GetInfo(APE_INFO_WAVEFORMATEX, (int) &m_wfeInput);
28 m_nBlockAlign = GetInfo(APE_INFO_BLOCK_ALIGN);
40 ? 0 : min(nStartBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
42 ? GetInfo(APE_INFO_TOTAL_BLOCKS)
43 : min(nFinishBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
44 m_bIsRanged = (m_nStartBlock != 0) || (m_nFinishBlock != GetInfo(APE_INFO_TOTAL_BLOCKS));
62 m_cbFrameBuffer.CreateBuffer((GetInfo(APE_INFO_BLOCKS_PER_FRAME) + DECODE_BLOCK_SIZE) * m_nBlockAlign, m_nBlockAlign * 64);
65 m_spUnBitArray.Assign((CUnBitArrayBase *) CreateUnBitArray(this, GetInfo(APE_INFO_FILE_VERSION)));
67 if (GetInfo(APE_INFO_FILE_VERSIO
374 int CAPEDecompress::GetInfo(APE_DECOMPRESS_FIELDS Field, int nParam1, int nParam2) function in class:CAPEDecompress
[all...]
H A DAPEDecompress.h23 int GetInfo(APE_DECOMPRESS_FIELDS Field, int nParam1 = 0, int nParam2 = 0);
H A DAPEInfo.cpp132 int CAPEInfo::GetInfo(APE_DECOMPRESS_FIELDS Field, int nParam1, int nParam2) function in class:CAPEInfo
201 int nFrameBytes = GetInfo(APE_INFO_FRAME_BYTES, nFrame);
202 int nFrameBlocks = GetInfo(APE_INFO_FRAME_BLOCKS, nFrame);
257 WAVEFORMATEX wfeFormat; GetInfo(APE_INFO_WAVEFORMATEX, (int) &wfeFormat, 0);
328 nRetVal = GetInfo(APE_INFO_SEEK_BYTE, nFrame + 1) - GetInfo(APE_INFO_SEEK_BYTE, nFrame);
330 nRetVal = m_spIO->GetSize() - m_spAPETag->GetTagBytes() - m_APEFileInfo.nWAVTerminatingBytes - GetInfo(APE_INFO_SEEK_BYTE, nFrame);
H A DAPEInfo.h66 #define GET_USES_CRC(APE_INFO) (((APE_INFO)->GetInfo(APE_INFO_FORMAT_FLAGS) & MAC_FORMAT_FLAG_CRC) ? TRUE : FALSE)
67 #define GET_FRAMES_START_ON_BYTES_BOUNDARIES(APE_INFO) (((APE_INFO)->GetInfo(APE_INFO_FILE_VERSION) > 3800) ? TRUE : FALSE)
68 #define GET_USES_SPECIAL_FRAMES(APE_INFO) (((APE_INFO)->GetInfo(APE_INFO_FILE_VERSION) > 3820) ? TRUE : FALSE)
69 #define GET_IO(APE_INFO) ((CIO *) (APE_INFO)->GetInfo(APE_INFO_IO_SOURCE))
70 #define GET_TAG(APE_INFO) ((CAPETag *) (APE_INFO)->GetInfo(APE_INFO_TAG))
85 int GetInfo(APE_DECOMPRESS_FIELDS Field, int nParam1 = 0, int nParam2 = 0);

Completed in 111 milliseconds

123456