Home
last modified time | relevance | path

Searched refs:fMethod (Results 1 – 10 of 10) sorted by relevance

/haiku/src/kits/network/libnetservices2/
H A DHttpRequest.cpp65 fMethod(verb) in BHttpMethod()
72 fMethod(BString(verb.data(), verb.length())) in BHttpMethod()
76 __PRETTY_FUNCTION__, std::move(std::get<BString>(fMethod))); in BHttpMethod()
85 fMethod(std::move(other.fMethod)) in BHttpMethod()
87 other.fMethod = Get; in BHttpMethod()
100 fMethod = std::move(other.fMethod); in operator =()
101 other.fMethod = Get; in operator =()
109 if (std::holds_alternative<Verb>(fMethod)) { in operator ==()
110 return std::get<Verb>(fMethod) == other; in operator ==()
114 return std::get<BString>(fMethod).Compare(otherMethodSv.data(), otherMethodSv.size()) == 0; in operator ==()
[all …]
/haiku/src/tests/system/kernel/unit/
H A DTestThread.h22 fMethod(method), in TestThread()
37 (thread->fObject->*thread->fMethod)( in _Entry()
45 void (ObjectType::*fMethod)(TestContext&, ParameterType*);
H A DTest.h64 bool (TestClass::*fMethod)(TestContext&);
74 fMethod(method) in StandardTest()
98 return (fObject->*fMethod)(context); in Run()
/haiku/src/servers/input/
H A DInputServerMethod.cpp161 : fMethod(method), in _BMethodAddOn_()
244 if (fMethod) { in MethodActivated()
251 return fMethod->MethodActivated(activate); in MethodActivated()
H A DInputServer.h106 BInputServerMethod* fMethod;
/haiku/headers/tools/cppunit/
H A DThreadManager.h35 ThreadMethod fMethod; variable
54 , fMethod(method) in BThreadManager()
163 (fObject->*fMethod)(); in Run()
/haiku/src/system/kernel/fs/
H A Dvfs_boot.cpp155 fMethod(method) in BootMethod()
203 if (fMethod == BOOT_METHOD_CD && !device->IsRemovable()) in IsBootDevice()
228 if (fMethod == BOOT_METHOD_CD) in IsBootDevice()
276 if (fMethod == BOOT_METHOD_CD) { in IsBootPartition()
316 fMethod == BOOT_METHOD_CD ? compare_cd_boot : compare_image_boot); in SortPartitions()
H A Dvfs_boot.h26 int32 fMethod; variable
/haiku/src/servers/package/
H A DRoot.cpp62 fMethod(method) in VolumeJob()
68 (fVolume->GetRoot()->*fMethod)(fVolume); in Do()
72 void (Root::*fMethod)(Volume*); member
/haiku/headers/private/netservices2/
H A DHttpRequest.h60 std::variant<Verb, BString> fMethod;