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

123

/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer.h48 // mappings: a list of additional mappings provided by the application.
54 const MappingList& mappings);
H A Dmicrodump_writer_unittest.cc90 MappingList mappings; local
94 mappings.push_back(mapping);
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));
H A Dmicrodump_writer.cc62 const MappingList& mappings,
69 mapping_list_(mappings),
282 // Ignore any mappings that are wholly contained within
283 // mappings in the mapping_info_ list.
339 // Write information about the mappings in effect.
341 // First write all the mappings from the dumper
342 for (unsigned i = 0; i < dumper_->mappings().size(); ++i) {
343 const MappingInfo& mapping = *dumper_->mappings()[i];
345 !mapping.exec || // only want executable mappings.
353 // Next write all the mappings provide
61 MicrodumpWriter(const ExceptionHandler::CrashContext* context, const MappingList& mappings, LinuxDumper* dumper) argument
376 WriteMicrodump(pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings) argument
[all...]
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.h94 // These overloads also allow passing a list of known mappings and
98 const MappingList& mappings,
102 const MappingList& mappings,
109 const MappingList& mappings,
114 const MappingList& mappings,
118 const MappingList& mappings,
H A Dlinux_ptrace_dumper_unittest.cc227 // Now check that LinuxPtraceDumper interpreted the mappings properly.
231 for (unsigned i = 0; i < dumper.mappings().size(); ++i) {
232 const MappingInfo& mapping = *dumper.mappings()[i];
280 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
282 for (unsigned i = 0; i < mappings.size(); ++i) {
283 mapping = mappings[i];
300 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
302 for (unsigned i = 0; i < mappings
334 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
[all...]
H A Dminidump_writer.cc129 const MappingList& mappings,
141 mapping_list_(mappings),
342 for (unsigned j = 0; j < dumper_->mappings().size(); ++j) {
343 const MappingInfo& mapping = *dumper_->mappings()[j];
455 // Avoid filtering executable mappings.
470 // Ignore any mappings that are wholly contained within
471 // mappings in the mapping_info_ list.
481 // Write information about the mappings in effect. Because we are using the
482 // minidump format, the information about the mappings is pretty limited.
486 const unsigned num_mappings = dumper_->mappings()
126 MinidumpWriter(const char* minidump_path, int minidump_fd, const ExceptionHandler::CrashContext* context, const MappingList& mappings, const AppMemoryList& appmem, LinuxDumper* dumper) argument
1259 WriteMinidumpImpl(const char* minidump_path, int minidump_fd, off_t minidump_size_limit, pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings, const AppMemoryList& appmem) argument
1317 WriteMinidump(const char* minidump_path, pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings, const AppMemoryList& appmem) argument
1326 WriteMinidump(int minidump_fd, pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings, const AppMemoryList& appmem) argument
1335 WriteMinidump(const char* minidump_path, off_t minidump_size_limit, pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings, const AppMemoryList& appmem) argument
1345 WriteMinidump(int minidump_fd, off_t minidump_size_limit, pid_t crashing_process, const void* blob, size_t blob_size, const MappingList& mappings, const AppMemoryList& appmem) argument
1355 WriteMinidump(const char* filename, const MappingList& mappings, const AppMemoryList& appmem, LinuxDumper* dumper) argument
[all...]
H A Dminidump_writer_unittest.cc190 MappingList mappings; local
195 mappings.push_back(mapping);
197 mappings, memory_list));
234 // existing mappings that are wholly contained within the specified
310 MappingList mappings; local
315 mappings.push_back(mapping);
317 mappings, memory_list));
474 MappingList mappings; local
483 mappings, memory_list));
H A Dlinux_dumper.h74 // Parse the data for |threads| and |mappings|.
90 const wasteful_vector<MappingInfo*> &mappings() { return mappings_; } function in class:google_breakpad::LinuxDumper
/external/google-breakpad/src/tools/linux/core2md/
H A Dcore2md.cc49 MappingList mappings; local
52 return google_breakpad::WriteMinidump(filename, mappings, memory_list,
/external/jetty/src/java/org/eclipse/jetty/security/
H A DConstraintSecurityHandler.java181 List<ConstraintMapping> mappings = new ArrayList<ConstraintMapping>();
186 mappings.add(mapping);
189 return mappings;
194 /** Take out of the constraint mappings those that match the
206 List<ConstraintMapping> mappings = new ArrayList<ConstraintMapping>();
209 //Remove the matching mappings by only copying in non-matching mappings
212 mappings.add(mapping);
215 return mappings;
230 List<ConstraintMapping> mappings
548 processConstraintMappingWithMethodOmissions(ConstraintMapping mapping, Map<String, RoleInfo> mappings) argument
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypeResolver.java41 * An object of this class encapsulates type mappings from type variables. Mappings are established
44 * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
88 * corresponding mappings exist in the current {@code TypeResolver} instance.
91 Map<TypeVariableKey, Type> mappings = Maps.newHashMap();
92 populateTypeMappings(mappings, checkNotNull(formal), checkNotNull(actual));
93 return where(mappings);
97 TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) { argument
98 return new TypeResolver(typeTable.where(mappings));
102 final Map<TypeVariableKey, Type> mappings, Type from, final Type to) {
108 mappings
101 populateTypeMappings( final Map<TypeVariableKey, Type> mappings, Type from, final Type to) argument
226 where(Map<TypeVariableKey, ? extends Type> mappings) argument
312 private final Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); field in class:TypeResolver.TypeMappingIntrospector
[all...]
/external/icu/icu4c/source/tools/makeconv/
H A Dgencnvex.c62 /* for stage3 compaction of <subchar1> |2 mappings */
288 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
290 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
297 UCMapping *mappings; local
302 mappings=table->mappings;
306 /* leave the map alone for the initial mappings with desired flags */
308 flag=mappings[map[i]].f;
316 flag=mappings[map[i]].f;
385 * - The mappings ar
412 UCMapping *mappings, *m; local
585 UCMapping *mappings, *m; local
711 UCMapping *mappings, *m; local
928 UCMapping *mappings, *m; local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializationHandler.java106 * @param mappings NamespaceMappings
108 public void setNamespaceMappings(NamespaceMappings mappings); argument
H A DToUnknownStream.java1180 * Get the current namespace mappings.
1181 * Simply returns the mappings of the wrapped handler.
1186 NamespaceMappings mappings = null;
1189 mappings = m_handler.getNamespaceMappings();
1191 return mappings;
/external/jetty/src/java/org/eclipse/jetty/servlet/
H A DFilterHolder.java220 FilterMapping[] mappings =_servletHandler.getFilterMappings();
222 for (FilterMapping mapping : mappings)
235 FilterMapping[] mappings =_servletHandler.getFilterMappings();
237 for (FilterMapping mapping : mappings)
H A DServletHandler.java214 //remove all of the mappings that were for non-embedded filters
216 //remove any mappings associated with this filter
237 List<ServletMapping> servletMappings = LazyList.array2List(_servletMappings); //will be remaining mappings
247 //remove any mappings associated with this servlet
858 * @param pathSpec servlet mappings for the servletHolder
929 * @param pathSpec filter mappings for filter
945 * @param pathSpec filter mappings for filter
961 * @param pathSpec filter mappings for filter
998 * @param pathSpec filter mappings for filter
1014 * @param pathSpec filter mappings fo
[all...]
H A DJspPropertyGroupServlet.java38 /** Servlet handling JSP Property Group mappings
72 ServletMapping[] mappings = _servletHandler.getServletMappings();
73 for (ServletMapping m:mappings)
H A DServletHolder.java789 ServletMapping[] mappings =_servletHandler.getServletMappings();
791 if (mappings!=null)
793 for (ServletMapping mapping : mappings)
/external/icu/icu4c/source/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...]
/external/v8/tools/
H A DSourceMap.js217 var mappings = this._reverseMappingsBySourceURL[sourceURL];
218 for ( ; lineNumber < mappings.length; ++lineNumber) {
219 var mapping = mappings[lineNumber];
253 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.mappings);
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInputManager.java102 private final HashMap<String, Mapping> mappings = new HashMap<String, Mapping>(); field in class:InputManager
463 * Adds a new listener to receive events on the given mappings.
482 Mapping mapping = mappings.get(mappingName);
485 mappings.put(mappingName, mapping);
496 * <p>This will unregister the listener from any mappings that it
505 for (Mapping mapping : mappings.values()) {
516 * registered to the mappings will receive appropriate events.
524 Mapping mapping = mappings.get(mappingName);
527 mappings.put(mappingName, mapping);
556 return mappings
[all...]
H A DFlyByCamera.java56 private static String[] mappings = new String[]{ field in class:FlyByCamera
203 inputManager.addListener(this, mappings);
227 for (String s : mappings) {
/external/google-breakpad/src/tools/linux/md2core/
H A Dminidump-2-core.cc204 std::map<uint64_t, Mapping> mappings; member in struct:CrashedProcess
571 crashinfo->mappings[mapping.start_address] = mapping;
802 if (crashinfo->mappings.find(mapping.start_address) ==
803 crashinfo->mappings.end()) {
806 crashinfo->mappings[mapping.start_address] = mapping;
851 iter = crashinfo->mappings.begin();
852 iter != crashinfo->mappings.end();
881 crashinfo->mappings[mapping.start_address] = mapping;
893 crashinfo->mappings[mapping.start_address] = mapping;
1106 crashinfo.mappings
[all...]
/external/icu/icu4c/source/config/
H A Ddist.mk18 DISTY_RMV=brkitr coll curr lang locales mappings rbnf region translit xml zone
/external/libvorbis/lib/
H A Dvorbisenc.c93 int mappings; member in struct:__anon9374
644 int mappings=setup_list[i]->mappings; local
652 if(req>map[setup_list[i]->mappings]){++i;continue;}
653 for(j=0;j<mappings;j++)
656 if(j==mappings)

Completed in 513 milliseconds

123