Searched refs:object (Results 101 - 125 of 228) sorted by relevance

12345678910

/haiku/src/libs/icon/transformer/
H A DContourTransformer.h58 const PropertyObject* object);
/haiku/src/add-ons/translators/jpeg/
H A Dbe_jdatadst.cpp49 #define SIZEOF(object) ((size_t) sizeof(object))
51 /* Expanded data destination object for stdio output */
156 /* The destination object is made permanent so that multiple JPEG images
159 * manager serially with the same JPEG object, because their private object
162 if (cinfo->dest == NULL) { /* first time for this JPEG object? */
H A Dbe_jdatasrc.cpp49 #define SIZEOF(object) ((size_t) sizeof(object))
51 /* Expanded data source object for stdio input */
214 /* The source object and input buffer are made permanent so that a series
219 * manager serially with the same JPEG object. Caveat programmer.
221 if (cinfo->src == NULL) { /* first time for this JPEG object? */
/haiku/headers/private/kernel/
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 Dthread.h131 status_t select_thread(int32 object, struct select_info *info, bool kernel);
132 status_t deselect_thread(int32 object, struct select_info *info, bool kernel);
318 \param type The type of object the thread will be blocked at. Informative/
320 constants. \c THREAD_BLOCK_TYPE_OTHER implies that \a object is a
322 \param object The object the thread will be blocked at. Informative/for
327 const void* object)
331 thread->wait.object = object;
326 thread_prepare_to_block(Thread* thread, uint32 flags, uint32 type, const void* object) argument
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,
/haiku/src/system/kernel/slab/
H A DSmallObjectCache.cpp106 SmallObjectCache::ObjectSlab(void* object) const
108 return slab_in_pages(lower_boundary(object, slab_size), slab_size);
H A DHashedObjectCache.cpp158 HashedObjectCache::ObjectSlab(void* object) const
162 HashedSlab* slab = hash_table.Lookup(::lower_boundary(object, slab_size));
164 panic("hash object cache %p: unknown object %p", this, object);
H A DHashedObjectCache.h37 virtual slab* ObjectSlab(void* object) const;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCCallbackServer.h56 static status_t ListenerThreadLauncher(void* object);
59 static status_t ConnectionThreadLauncher(void* object);
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);
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformGradientBox.cpp97 TransformGradientBox::ObjectChanged(const Observable* object) argument
102 if (object == fShape) {
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.h59 void SetTo(PropertyObject* object);
60 // takes ownership of the object
64 virtual void PasteProperties(const PropertyObject* object);
/haiku/headers/tools/cppunit/
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");
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
/haiku/src/kits/package/hpkg/
H A DPackageFileHeapAccessorBase.cpp226 void* object; member in struct:BPackageKit::BHPKG::BPrivate::ObjectCacheDeleter
230 , object(NULL)
236 if (cache != NULL && object != NULL)
237 object_cache_free(cache, object, 0);
246 compressedCacheDeleter.object = compressedDataBuffer;
247 uncompressedCacheDeleter.object = uncompressedDataBuffer;
/haiku/src/apps/glteapot/
H A DObjectView.cpp11 * Original Be Sample source modified to use a quaternion for the object's orientation
446 GLObject* object = NULL; local
450 object = reinterpret_cast<GLObject*>(fObjects.ItemAt(ObjectAtPoint(point)));
452 if (object != NULL){
454 fTrackingInfo.pickedObject = object;
471 object->MenuInvoked(point);
549 void* object = fObjects.ItemAt(ObjectAtPoint(point)); local
550 BCursor cursor(object != NULL
775 GLObject *object = reinterpret_cast<GLObject*>(fObjects.ItemAt(i)); local
776 if (object
781 GLObject *object = reinterpret_cast<GLObject*>(fObjects.ItemAt(i)); local
[all...]
/haiku/headers/private/netservices2/
H A DExclusiveBorrow.h90 BorrowPointer(T* object) noexcept
92 fPtr(object)
122 BExclusiveBorrow(T* object) argument
124 fAdminBlock = new BorrowPointer<T>(object);
125 fPtr = 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/src/add-ons/kernel/file_systems/udf/
H A DUdfDebug.h170 #define DUMP(object) \
172 (object).dump(); \
222 #define DUMP(object) ;
/haiku/src/add-ons/kernel/drivers/input/i2c_hid/
H A DDriver.cpp320 acpi_object_type* object = acpi_evaluate_dsm(handle, acpiHidGuid, 1, 1); local
321 if (object == NULL)
323 if (object->object_type != ACPI_TYPE_INTEGER) {
324 free(object);
328 uint32 descriptorAddress = object->integer.integer;
329 free(object);
/haiku/src/libs/icon/shape/
H A DShape.h73 const PropertyObject* object);
79 virtual void ObjectChanged(const Observable* object);
/haiku/src/system/kernel/debug/
H A Dsystem_profiler.cpp44 // minimum/maximum size of the table used for wait object caching
106 void _WaitObjectCreated(addr_t object, uint32 type);
107 void _WaitObjectUsed(addr_t object, uint32 type);
135 addr_t object; member in struct:SystemProfiler::WaitObjectKey
150 return (size_t)key.object ^ (size_t)key.type;
162 && value->object == key.object;
317 // stop wait object listening
355 // delete wait object related allocations
394 // allocate the wait object buffe
1204 _WaitObjectCreated(addr_t object, uint32 type) argument
1225 _WaitObjectUsed(addr_t object, uint32 type) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DManipulator.h24 Manipulator(Observable* object);
/haiku/src/kits/game/
H A DGameSoundDevice.h53 const void * object,

Completed in 160 milliseconds

12345678910