Searched refs:unmap (Results 1 - 25 of 39) sorted by relevance

12

/macosx-10.10.1/vim-55/runtime/macros/
H A Dless.vim197 unmap h
198 unmap H
199 unmap <Space>
200 unmap <C-V>
201 unmap f
202 unmap <C-F>
203 unmap z
204 unmap <Esc><Space>
205 unmap F
206 unmap
[all...]
/macosx-10.10.1/groff-38/groff/src/libs/libbib/
H A Dmap.c53 int unmap(char *p, int len) function
76 int unmap(char *p, int len) function
H A Dindex.cpp43 int unmap(void *, int len);
121 if (unmap(map_addr, map_len) < 0)
122 error("unmap: %1", strerror(errno));
/macosx-10.10.1/BerkeleyDB-21/db/test/scr028/
H A Dt.c54 unmap(DB_ENV *dbenv, void *addr) function
66 F(db_env_set_func_file_map, file_map, unmap, "file map");
77 F(db_env_set_func_region_map, region_map, unmap, "region map");
/macosx-10.10.1/xnu-2782.1.97/bsd/vm/
H A Dvm_compressor_backing_file.c248 dk_unmap_t unmap; local
272 memset (&unmap, 0, sizeof(dk_unmap_t));
273 unmap.extents = extents;
317 unmap.extentsCount = trim_index;
318 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
336 unmap.extentsCount = trim_index;
337 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
H A Dvnode_pager.c229 dk_unmap_t unmap; local
264 memset (&unmap, 0, sizeof(dk_unmap_t));
267 unmap.extents = &extent;
268 unmap.extentsCount = 1;
269 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
/macosx-10.10.1/libutil-38/
H A Dwipefs.cpp246 dk_unmap_t unmap; local
251 memset(&unmap, 0, sizeof(dk_unmap_t));
252 unmap.extents = &extent;
253 unmap.extentsCount = 1;
259 ioctl(handle->fd, DKIOCUNMAP, (caddr_t)&unmap);
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/stream/
H A Dtiffstream.cpp43 unmap);
64 unmap);
85 unmap);
161 TiffStream::unmap(thandle_t fd, tdata_t base, tsize_t size) function in class:TiffStream
H A Dtiffstream.h38 static void unmap(thandle_t fd, tdata_t base, tsize_t size);
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dabaqus.vim85 let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]"
86 \ . "|unmap <buffer> <LocalLeader><LocalLeader>"
H A Druby.vim126 \."| sil! exe 'unmap <buffer> [[' | sil! exe 'unmap <buffer> ]]' | sil! exe 'unmap <buffer> []' | sil! exe 'unmap <buffer> ]['"
127 \."| sil! exe 'unmap <buffer> [m' | sil! exe 'unmap <buffer> ]m' | sil! exe 'unmap <buffer> [M' | sil! exe 'unmap <buffer> ]M'"
H A Dcobol.vim63 \ " | sil! exe 'unmap <buffer> [['" .
64 \ " | sil! exe 'unmap <buffer> ]]'" .
65 \ " | sil! exe 'unmap <buffer> []'" .
66 \ " | sil! exe 'unmap <buffer> ]['"
/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOFilterScheme.cpp181 IOReturn IOFilterScheme::unmap(IOService * client, function in class:IOFilterScheme
191 return getProvider( )->unmap( this, extents, extentsCount, options );
H A DIOFilterScheme.h227 * @function unmap
242 virtual IOReturn unmap(IOService * client,
H A DIOMedia.h475 * @function unmap
490 virtual IOReturn unmap(IOService * client,
H A DIOPartitionScheme.h317 * @function unmap
332 virtual IOReturn unmap(IOService * client,
H A DIOStorage.cpp387 IOReturn IOStorage::unmap(IOService * client, function in class:IOStorage
H A DIOStorage.h237 * Extent for unmap storage requests.
585 * @function unmap
600 virtual IOReturn unmap(IOService * client,
H A DIOMedia.cpp870 IOReturn IOMedia::unmap(IOService * client, function in class:IOMedia
921 return getProvider()->unmap(this, extents, extentsCount, options);
H A DIOPartitionScheme.cpp370 IOReturn IOPartitionScheme::unmap(IOService * client, function in class:IOPartitionScheme
380 return getProvider( )->unmap( this, extents, extentsCount, options );
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/
H A Dscrollframe.tcl75 # add <unmap> binding: <configure> is not called when frame
237 proc ScrollableFrame::_frameConfigure {canvas {unmap 0}} {
243 set frameh [expr {$unmap ? 0 : [winfo height $canvas.frame]}]
244 set framew [expr {$unmap ? 0 : [winfo width $canvas.frame]}]
/macosx-10.10.1/IOKitUser-1050.1.21/kext.subproj/
H A Dfat_util.c56 int unmap : 1; // we own the data member in struct:__fat_iterator
157 local_iter.unmap = 1;
220 if (iter->unmap) {
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dwinop.rb91 def unmap(*wins) method
92 tk_call('::blt::winop', 'unmap', *wins)
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_symfile.c109 dk_unmap_t unmap; local
113 bzero(&unmap, sizeof(dk_unmap_t));
151 unmap.extents = &extent;
152 unmap.extentsCount = 1;
153 error = do_ioctl(p1, p2, theIoctl, (caddr_t)&unmap);
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c181 /* Headers for unmap-on-mount support */
412 ; longer have useful content, and the device can unmap the
472 ; longer have useful content, and the device can unmap the
531 dk_unmap_t unmap; local
539 bzero(&unmap, sizeof(unmap));
540 unmap.extents = list->extents;
541 unmap.extentsCount = list->extent_count;
544 KERNEL_DEBUG_CONSTANT(HFSDBG_UNMAP_SCAN_TRIM | DBG_FUNC_NONE, hfsmp->hfs_raw_dev, unmap.extentsCount, 0, 0, 0);
554 unmap
[all...]

Completed in 444 milliseconds

12