Searched refs:area (Results 251 - 275 of 278) sorted by relevance

<<1112

/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.h146 area_id area; member in struct:_emuxki_mem
/haiku/src/system/kernel/
H A Dsem.cpp406 area_id area; local
423 area = create_area_etc(B_SYSTEM_TEAM, "sem_table",
427 if (area < 0)
H A Delf.cpp1331 // we now no longer need to write to the text area anymore
1358 // find the runtime loader debug area
1359 VMArea* area; local
1362 (area = it.Next()) != NULL;) {
1363 if (strcmp(area->name, RUNTIME_LOADER_DEBUG_AREA_NAME) == 0)
1367 if (area == NULL)
1371 if (!_Read((runtime_loader_debug_area*)area->Base(), fDebugArea))
1926 // correct area protection will be set after relocation
2014 dprintf("error allocating bss area: %s!\n", strerror(id));
2070 // set correct area protectio
[all...]
H A Dteam.cpp1165 kprintf("user data: %p (area %" B_PRId32 ")\n",
1429 team->user_data_area = create_area_etc(team->id, "user area",
1595 // Main stack area layout is currently as follows (starting from 0):
1651 // Clone commpage area
1834 // create the user data area
2192 if (info.area == parentTeam->user_data_area) {
2193 // don't clone the user area; just create a new one
2201 area_id area = vm_copy_area(team->address_space->ID(), info.name, local
2202 &address, B_CLONE_ADDRESS, info.area);
2203 if (area < B_O
[all...]
/haiku/src/system/runtime_loader/
H A Delf.cpp1211 // create the debug area
1215 runtime_loader_debug_area *area; local
1217 (void **)&area, B_RANDOMIZED_ANY_ADDRESS, size, B_NO_LOCK,
1220 FATAL("Failed to create debug area.\n");
1224 area->loaded_images = &get_loaded_images();
/haiku/headers/libs/agg/
H A Dagg_path_storage.h1179 // Calculate signed area (double area to be exact)
1182 double area = 0.0; local
1189 area += x1 * y2 - y1 * x2;
1191 return (area < 0.0) ? path_flags_cw : path_flags_ccw;
/haiku/src/bin/unzip/
H A Dprocess.c512 if (G.area.Slide) {
513 free(G.area.Slide);
514 G.area.Slide = (uch *)NULL;
H A Dfunzip.c249 uch *rawbuf; /* start of buffer area to flush */
329 calculation for the work area size of UnZip (see unzip.c). For
330 fUnZip, the work area does not need to match the granularity
338 G.area.Slide = (uch *)zcalloc(UZ_NUMOF_CHUNKS, UZ_SLIDE_CHUNK);
H A Dunzpriv.h1385 #define EB_FLGS_OFFS 4 /* offset of flags area in generic compressed
1424 #define HSIZE (1 << MAX_BITS) /* size of global work area */
1540 Zipfile work area declarations.
1563 #define slide G.area.Slide
1568 # define redirSlide G.area.Slide
2154 * Info() macro with 'slide' (the start of this area) as message buffer.
/haiku/src/kits/game/
H A DDirectWindow.cpp586 fSourceClippingArea = syncData.area;
590 fClonedClippingArea = clone_area("cloned direct area", (void**)&fBufferDesc,
/haiku/headers/private/graphics/radeon/
H A Dradeon_interface.h395 bool scroll; // scrolling in virtual area enabled
401 uint32 eff_width, eff_height; // size of visible area (including both monitors)
500 area_id area; // area to memory member in struct:__anon32
539 area_id regs_area; // area of memory mapped registers
540 area_id ROM_area; // area of ROM
556 area_id mode_list_area; // area containing display mode list
/haiku/src/system/kernel/vm/
H A Dvm_page.cpp798 kprintf("%" B_PRId32 " (%s)", mapping->area->id, mapping->area->name);
979 kprintf("area mappings:\n");
984 kprintf(" %p (%" B_PRId32 ")\n", mapping->area, mapping->area->id);
1002 VMArea* area = addressSpace->LookupArea(address); local
1003 kprintf(" aspace %" B_PRId32 ", area %" B_PRId32 ": %#"
1005 area != NULL ? area->id : -1, address,
/haiku/src/servers/input/
H A DInputServer.cpp385 area_id area; local
386 if (message.FindInt32("cursor area", &area) == B_OK) {
387 // try to clone the area
393 B_ANY_ADDRESS, B_READ_AREA | B_WRITE_AREA, area);
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp307 if ((info.area = area_for(fBitmap[j]->Bits())) == B_ERROR)
/haiku/src/kits/media/
H A DMediaNode.cpp746 area_id dataArea = clone_area("client attributes area",
748 request->area);
751 ERROR("NODE_GET_ATTRIBUTES_FOR can't clone area\n");
/haiku/src/servers/app/drawing/interface/virtual/
H A DViewHWInterface.cpp157 void Invalidate(const BRect& area);
/haiku/headers/os/kernel/
H A DOS.h55 area_id area; member in struct:area_info
68 /* area locking */
87 /* area protection */
/haiku/src/kits/app/
H A DApplication.cpp701 if (message->FindInt32("server area", &serverArea) == B_OK) {
1453 area_id area;
1455 status = fServerAllocator->AddArea(sharedReadOnlyArea, area, base, true);
H A DMessage.cpp74 // private os function to set the owning team of an area
75 status_t _kern_transfer_area(area_id area, void** _address,
1104 /* The concept of message sending by area:
1120 into an area, put this information into the message header and only push
1122 the header, that only references the data in the area (not copying it),
1124 Only if write access is necessary the message will be copyed from the area
1130 an area behind or deleting one that is still in use.
1157 area_id area = create_area("BMessage data", (void**)&address, local
1160 if (area < 0) {
1163 return area;
[all...]
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp69 AutoFloatingOverlaysHider(HWInterface* interface, const BRect& area) argument
72 fHidden(interface->HideFloatingOverlays(area))
453 // bottom, These can be copied without drawing into the area of
474 // There are no rects in the area defined by the rays to the right
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantHWInterface.cpp1581 AccelerantHWInterface::_DrawCursor(IntRect area) const
1584 HWInterface::_DrawCursor(area);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DVolume.cpp1336 area_id area; local
1339 if ((area = area_for(buffer)) >= 0) {
1340 if (get_area_info(area, &info) == B_OK) {
1353 PRINT(("Volume::IOCtl(): failed to get area info\n"));
1355 PRINT(("Volume::IOCtl(): bad area\n"));
1378 area_id area = area_for(buffer); local
1379 if (area < 0) {
1380 PRINT(("Volume::IOCtl(): bad area\n"));
1385 if (get_area_info(area, &info) != B_OK) {
1386 PRINT(("Volume::IOCtl(): failed to get area inf
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug.cpp1348 // was enabled. Just drop it -- we'll never create the area.
1382 // create an area for the already-existing debug syslog buffer
1385 area_id area = create_area("syslog debug", &base, B_EXACT_ADDRESS, size, local
1387 if (area < 0) {
1869 \param protection The area protection for which to check. Valid is a bitwise
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp76 IconButton::Draw(BRect area) argument
/haiku/src/kits/debugger/debugger_interface/local/
H A DLocalDebuggerInterface.cpp573 AreaInfo* info = new(std::nothrow) AreaInfo(fTeamID, areaInfo.area,

Completed in 269 milliseconds

<<1112