Searched refs:object (Results 1 - 25 of 228) sorted by path

12345678910

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex45 additionally contain resources -- namely the ELF and PEF object formats.
597 \item{Resources alignment in ELF files: Several tests with linker object files
/haiku/headers/build/os/app/
H A DMessage.h125 status_t AddFlat(const char *name, BFlattenable *object,
176 status_t FindFlat(const char *name, BFlattenable *object) const;
177 status_t FindFlat(const char *name, int32 index, BFlattenable *object) const;
222 status_t ReplaceFlat(const char *name, BFlattenable *object);
223 status_t ReplaceFlat(const char *name, int32 index, BFlattenable *object);
/haiku/headers/os/drivers/
H A DUSB2.h137 * The provided object may be a usb_device, usb_pipe or usb_interface
139 status_t (*set_feature)(const void *object, uint16 selector);
140 status_t (*clear_feature)(const void *object, uint16 selector);
141 status_t (*get_status)(const void *object, uint16 *status);
/haiku/headers/os/support/
H A DArchivable.h96 inline status_t GetObject(int32 token, T*& object);
100 T*& object);
103 inline status_t FindObject(const char* name, T*& object);
108 T*& object);
112 int32 index, T*& object);
116 ownership_policy owning, T*& object);
137 T*& object);
185 ownership_policy owning, T*& object)
187 object = NULL;
193 object
184 FindObject(const char* name, int32 index, ownership_policy owning, T*& object) argument
213 GetObject(int32 token, ownership_policy owning, T*& object) argument
235 GetObject(int32 token, T*& object) argument
243 FindObject(const char* name, ownership_policy owning, T*& object) argument
251 FindObject(const char* name, T*& object) argument
259 FindObject(const char* name, int32 index, T*& object) argument
290 InstantiateObject(BMessage* archive, T*& object) argument
[all...]
H A DClassInfo.h15 #define class_name(object) \
16 ((typeid(*(object))).name())
17 #define cast_as(object, class) \
18 (dynamic_cast<class*>(object))
19 #define is_kind_of(object, class) \
20 (dynamic_cast<class*>(object) != NULL)
21 #define is_instance_of(object, class) \
22 (typeid(*(object)) == typeid(class))
/haiku/headers/private/app/
H A DAppMisc.h41 \param object The BHandler.
45 inline int32 _get_object_token_(const BHandler* object) argument
46 { return object->fToken; }
H A DTokenSpace.h41 int32 NewToken(int16 type, void* object);
42 bool SetToken(int32 token, int16 type, void* object);
59 void* object; member in struct:BPrivate::BTokenSpace::token_info
/haiku/headers/private/debugger/util/
H A DWorker.h54 const void* object; member in struct:SimpleJobKey
58 SimpleJobKey(const void* object, uint32 type);
/haiku/headers/private/kernel/
H A Ddebug_heap.h45 destroy(Type* object) argument
47 if (object != NULL) {
48 object->~Type();
49 debug_free(object);
H A Ddebug_paranoia.h37 status_t create_paranoia_check_set(const void* object,
39 status_t delete_paranoia_check_set(const void* object);
40 status_t run_paranoia_checks(const void* object);
42 status_t set_paranoia_check(const void* object, const void* address,
44 status_t remove_paranoia_check(const void* object, const void* address,
65 #define CREATE_PARANOIA_CHECK_SET(object, description) \
66 PARANOIA_ONLY(create_paranoia_check_set((object), (description)))
67 #define DELETE_PARANOIA_CHECK_SET(object) \
68 PARANOIA_ONLY(delete_paranoia_check_set((object)))
69 #define RUN_PARANOIA_CHECKS(object) \
93 ParanoiaChecker(const void* object) argument
[all...]
H A Dksystem_info.h32 status_t _user_start_watching_system(int32 object, uint32 flags, port_id port,
34 status_t _user_stop_watching_system(int32 object, uint32 flags, port_id port,
H A Dport.h41 status_t select_port(int32 object, struct select_info *info, bool kernel);
42 status_t deselect_port(int32 object, struct select_info *info, bool kernel);
H A Dscheduling_analysis.h71 InitConditionVariable(ConditionVariable* variable, const void* object, argument
75 fObject(object),
83 out.Print("cvar init variable %p: object: %p \"%s\"", fVariable,
H A Dsem.h29 extern status_t select_sem(int32 object, struct select_info *info, bool kernel);
30 extern status_t deselect_sem(int32 object, struct select_info *info,
/haiku/headers/private/kernel/slab/
H A DObjectDepot.h29 void* object, uint32 flags);
39 void (*returnObject)(object_depot* depot, void* cookie, void* object,
44 void object_depot_store(object_depot* depot, void* object, uint32 flags);
49 bool object_depot_contains_object(object_depot* depot, void* object);
/haiku/headers/private/kernel/util/
H A DConstructor.h14 /*! Constructs the object pointed to by \a object via a
18 void Construct(Pointer object) { argument
19 if (object)
20 new(reinterpret_cast<void*>(object)) DataType();
23 /*! Constructs the object pointed to by \a object via a
28 void Construct(Pointer object, ArgType1 arg1) { argument
29 if (object)
30 new(reinterpret_cast<void*>(object)) DataTyp
38 Construct(Pointer object, ArgType1 arg1, ArgType2 arg2) argument
48 Construct(Pointer object, ArgType1 arg1, ArgType2 arg2, ArgType3 arg3) argument
59 Construct(Pointer object, ArgType1 arg1, ArgType2 arg2, ArgType3 arg3, ArgType4 arg4) argument
68 Destruct(Pointer object) argument
[all...]
H A DMallocFreeAllocator.h16 /*! malloc()'s an object of type \c DataType and returns a
23 /*! free()'s the given object.
25 void Deallocate(Pointer object) { argument
26 free(object);
/haiku/headers/private/system/
H A Dscheduler_defs.h42 void* object; member in struct:scheduling_analysis_wait_object
H A Dsystem_profiler_defs.h173 addr_t object; member in struct:system_profiler_wait_object_info
/haiku/headers/tools/cppunit/
H A DThreadManager.h20 BThreadManager(std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem);
48 TestClass *object,
53 , fObject(object)
152 // the object's id->(name,subtestnum) map.
46 BThreadManager( std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem ) argument
H A DThreadedTestCaller.h25 BThreadedTestCaller(std::string name, TestClass &object);
26 BThreadedTestCaller(std::string name, TestClass *object);
61 BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass &object) argument
64 , fObject(&object)
70 BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass *object) argument
73 , fObject(object)
122 // the constructor). Each BThreadManager object catches and
251 // Verify we have a valid object that's not currently in use first.
255 throw CppUnit::Exception("BThreadedTestCaller::runTest() -- Attempt to reuse ThreadedTestCase object already in use");
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DOrthodox.h47 ClassUnderTest call (ClassUnderTest object);
86 ClassUnderTest Orthodox<ClassUnderTest>::call (ClassUnderTest object) argument
88 return object;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCCallbackServer.cpp278 CallbackServer::ConnectionThreadLauncher(void* object) argument
280 ASSERT(object != NULL);
282 void** objects = reinterpret_cast<void**>(object);
348 CallbackServer::ListenerThreadLauncher(void* object) argument
350 ASSERT(object != NULL);
352 CallbackServer* server = reinterpret_cast<CallbackServer*>(object);
H A DRPCServer.cpp307 Server::_ListenerThreadStart(void* object) argument
309 ASSERT(object != NULL);
311 Server* server = reinterpret_cast<Server*>(object);
H A DRPCServer.h92 static status_t _ListenerThreadStart(void* object);

Completed in 186 milliseconds

12345678910