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

12

/macosx-10.9.5/vim-53/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.9.5/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.9.5/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.9.5/xnu-2422.115.4/bsd/vm/
H A Dvm_compressor_backing_file.c253 dk_unmap_t unmap; local
269 memset (&unmap, 0, sizeof(dk_unmap_t));
270 unmap.extents = extents;
309 unmap.extentsCount = trim_index;
310 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
325 unmap.extentsCount = trim_index;
326 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
H A Dvnode_pager.c202 dk_unmap_t unmap; local
237 memset (&unmap, 0, sizeof(dk_unmap_t));
240 unmap.extents = &extent;
241 unmap.extentsCount = 1;
242 error = VNOP_IOCTL(devvp, DKIOCUNMAP, (caddr_t)&unmap, 0, vfs_context_kernel());
/macosx-10.9.5/libutil-34/
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.9.5/tcl-102/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.9.5/vim-53/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.9.5/IOStorageFamily-172/
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 DIOPartitionScheme.h305 * @function unmap
320 virtual IOReturn unmap(IOService * client,
H A DIOMedia.h475 * @function unmap
490 virtual IOReturn unmap(IOService * client,
H A DIOStorage.cpp399 IOReturn IOStorage::unmap(IOService * client, function in class:IOStorage
H A DIOStorage.h193 * Extent for unmap storage requests.
555 * @function unmap
570 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.9.5/tcl-102/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.9.5/IOKitUser-907.100.13/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.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dwinop.rb91 def unmap(*wins) method
92 tk_call('::blt::winop', 'unmap', *wins)
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITInlines.h464 unmap(tag);
470 unmap(tag);
475 unmap(tag);
483 unmap(payload);
489 unmap(payload);
494 unmap(payload);
636 inline void JIT::unmap(RegisterID registerID) function in class:JSC::JIT
644 inline void JIT::unmap() function in class:JSC::JIT
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_symfile.c109 dk_unmap_t unmap; local
113 bzero(&unmap, sizeof(dk_unmap_t));
150 unmap.extents = &extent;
151 unmap.extentsCount = 1;
152 error = do_ioctl(p1, p2, theIoctl, (caddr_t)&unmap);

Completed in 137 milliseconds

12