Searched refs:mappings (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_xattr.c43 } mappings[] = { variable in typeref:struct:xattr_mapping
44 /* mappings proposed by
60 while(err == 0 && mappings[i].attr != NULL) {
62 CURLcode rc = curl_easy_getinfo(curl, mappings[i].info, &value);
65 err = fsetxattr(fd, mappings[i].attr, value, strlen(value), 0, 0);
67 err = fsetxattr(fd, mappings[i].attr, value, strlen(value), 0);
69 err = extattr_set_fd(fd, EXTATTR_NAMESPACE_USER, mappings[i].attr, value,
/macosx-10.10.1/libiconv-42/libiconv/tools/
H A DMakefile129 iso8859_1.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-1.TXT 8bit_tab_to_h
132 iso8859_2.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-2.TXT 8bit_tab_to_h
135 iso8859_3.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-3.TXT 8bit_tab_to_h
138 iso8859_4.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-4.TXT 8bit_tab_to_h
141 iso8859_5.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-5.TXT 8bit_tab_to_h
144 iso8859_6.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-6.TXT 8bit_tab_to_h
147 iso8859_7.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-7-2003.TXT 8bit_tab_to_h
150 iso8859_8.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-8.TXT 8bit_tab_to_h
153 iso8859_9.h : $(TABLESDIR)/unicode.org-mappings/ISO8859/8859-9.TXT 8bit_tab_to_h
156 iso8859_10.h : $(TABLESDIR)/unicode.org-mappings/ISO885
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_shared_region.c44 * the same mappings in their VM map. All they need is contained in the shared
921 struct shared_file_mapping_np *mappings,
930 printf("Failed to undo mappings because of NULL shared region.\n");
963 * Undo the mappings we've established so far.
968 if (mappings[j].sfm_size == 0) {
983 (long long)mappings[j].sfm_address,
984 (long long)mappings[j].sfm_size,
985 (long long)mappings[j].sfm_file_offset,
986 mappings[j].sfm_max_prot,
987 mappings[
918 vm_shared_region_undo_mappings( vm_map_t sr_map, mach_vm_offset_t sr_base_address, struct shared_file_mapping_np *mappings, unsigned int mappings_count) argument
1021 vm_shared_region_map_file( vm_shared_region_t shared_region, unsigned int mappings_count, struct shared_file_mapping_np *mappings, memory_object_control_t file_control, memory_object_size_t file_size, void *root_dir, uint32_t slide, user_addr_t slide_start, user_addr_t slide_size) argument
[all...]
H A Dvm_shared_region.h189 struct shared_file_mapping_np *mappings,
194 struct shared_file_mapping_np *mappings,
/macosx-10.10.1/ICU-531.30/icuSources/tools/makeconv/
H A Dgencnvex.c65 /* for stage3 compaction of <subchar1> |2 mappings */
291 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
293 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
300 UCMapping *mappings; local
305 mappings=table->mappings;
309 /* leave the map alone for the initial mappings with desired flags */
311 flag=mappings[map[i]].f;
319 flag=mappings[map[i]].f;
388 * - The mappings ar
415 UCMapping *mappings, *m; local
588 UCMapping *mappings, *m; local
714 UCMapping *mappings, *m; local
931 UCMapping *mappings, *m; local
[all...]
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A Ddyld_shared_cache_util.cpp458 const dyldCacheFileMapping<LittleEndian>* mappings = (dyldCacheFileMapping<LittleEndian>*)((char*)options.mappedCache + header->mappingOffset()); local
459 const dyldCacheFileMapping<LittleEndian>* dataMapping = &mappings[1];
489 printf("mappings:\n");
490 const dyldCacheFileMapping<LittleEndian>* mappings = (dyldCacheFileMapping<LittleEndian>*)((char*)options.mappedCache + header->mappingOffset()); local
492 if ( mappings[i].init_prot() & VM_PROT_EXECUTE )
493 printf(" __TEXT %3lluMB, 0x%08llX -> 0x%08llX\n", mappings[i].size()/(1024*1024), mappings[i].address(), mappings[i].address() + mappings[i].size());
494 else if ( mappings[
[all...]
H A Ddsc_iterator.cpp46 const dyldCacheFileMapping<E>* mappings = (dyldCacheFileMapping<E>*)&cache[header->mappingOffset()]; local
48 if ( (mappings[i].address() <= addr) && (addr < (mappings[i].address() + mappings[i].size())) ) {
49 uint64_t cacheOffset = mappings[i].file_offset() + addr - mappings[i].address();
131 const dyldCacheFileMapping<E>* mappings = (dyldCacheFileMapping<E>*)&cache[header->mappingOffset()]; local
134 if ( (size != 0) && (mappings[i].file_offset() > size) )
136 uint64_t endOffset = mappings[i].file_offset()+mappings[
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/toolutil/
H A Ducm.c16 * This file reads a .ucm file, stores its mappings and sorts them.
17 * It implements handling of Unicode conversion mappings from .ucm files
22 * character sequence are handled to support m:n mappings.
73 m=table->mappings;
201 /* sorting by Unicode first sorts mappings directly */
209 /* sorting by bytes first sorts the reverseMap; use indirection to mappings */
215 table, table->mappings+l,
216 table, table->mappings+r, FALSE);
231 uprv_sortArray(t->mappings, t->mappingsLength, sizeof(UCMapping),
239 * if mappings ar
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSourceMap.js145 var mappings = this._reverseMappingsBySourceURL[sourceURL];
146 for ( ; lineNumber < mappings.length; ++lineNumber) {
147 var mapping = mappings[lineNumber];
179 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.mappings);
/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/
H A Dshared_memory_server.h127 const struct shared_file_mapping_np *mappings,
H A Dshared_region.h133 const struct shared_file_mapping_np *mappings);
/macosx-10.10.1/dyld-353.2.1/src/
H A Ddyld.cpp3096 static int __attribute__((noinline)) _shared_region_map_and_slide_np(int fd, uint32_t count, const shared_file_mapping_np mappings[], argument
3103 siginfo.fs_blob_start = (void*)mappings[codeSignatureMappingIndex].sfm_file_offset;
3104 siginfo.fs_blob_size = mappings[codeSignatureMappingIndex].sfm_size;
3112 return syscall(438, fd, count, mappings, slide, slideInfo, slideInfoSize);
3122 const shared_file_mapping_np* const start = mappings;
3123 const shared_file_mapping_np* const end = &mappings[count];
3153 const uintptr_t dataPagesStart = mappings[1].sfm_address;
3214 static void getCacheBounds(uint32_t mappingsCount, const shared_file_mapping_np mappings[], uint64_t& lowAddress, uint64_t& highAddress) argument
3220 lowAddress = mappings[i].sfm_address;
3221 highAddress = mappings[
3232 pickCacheSlide(uint32_t mappingsCount, shared_file_mapping_np mappings[]) argument
3306 const dyld_cache_mapping_info* const mappings = (dyld_cache_mapping_info*)(loadedAddress+header->mappingOffset); local
3360 shared_file_mapping_np mappings[header->mappingCount+1]; // add room for code-sig local
[all...]
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dlprolog.vim23 " Add mappings, unless the user didn't want this.
H A Dmail.vim26 " Add mappings, unless the user doesn't want this.
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dpaste.vim1 " Vim support file to help with paste mappings and menus
/macosx-10.10.1/vim-55/runtime/
H A Dgvimrc_example.vim50 " Cursor is green, Cyan when ":lmap" mappings are active
H A Dmacmap.vim9 " <special> in mappings.
H A Devim.vim8 " Use the mswin.vim script for most mappings
/macosx-10.10.1/xnu-2782.1.97/bsd/vm/
H A Dvm_unix.c1114 struct shared_file_mapping_np *mappings)
1119 /* get the list of mappings the caller wants us to establish */
1120 mappings_size = (vm_size_t) (mappings_count * sizeof (mappings[0]));
1122 mappings,
1149 struct shared_file_mapping_np *mappings,
1374 mappings,
1465 struct shared_file_mapping_np *mappings; local
1494 "no mappings\n",
1497 kr = 0; /* no mappings: we're done ! */
1500 mappings
1110 shared_region_copyin_mappings( struct proc *p, user_addr_t user_mappings, unsigned int mappings_count, struct shared_file_mapping_np *mappings) argument
1145 _shared_region_map_and_slide( struct proc *p, int fd, uint32_t mappings_count, struct shared_file_mapping_np *mappings, uint32_t slide, user_addr_t slide_start, user_addr_t slide_size) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DcertextensionsP.h330 uint32_t numMappings; // size of *mappings;
331 SecCEPolicyMapping *mappings; member in struct:__anon3840
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DcertextensionsP.h330 uint32_t numMappings; // size of *mappings;
331 SecCEPolicyMapping *mappings; member in struct:__anon4726
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DcertextensionsP.h330 uint32_t numMappings; // size of *mappings;
331 SecCEPolicyMapping *mappings; member in struct:__anon4813
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A Dcertextensions.h330 uint32_t numMappings; // size of *mappings;
331 SecCEPolicyMapping *mappings; member in struct:__anon5175
/macosx-10.10.1/rsync-45/rsync/support/
H A Dfile-attr-restore157 -m, --map=FILE Read user/group mappings from FILE
/macosx-10.10.1/ICU-531.30/icuSources/config/
H A Ddist.mk18 DISTY_RMV=brkitr coll curr lang locales mappings rbnf region translit xml zone

Completed in 183 milliseconds

1234