Home
last modified time | relevance | path

Searched refs:mapname (Results 1 – 10 of 10) sorted by relevance

/external/bcc/src/cc/
Dbcc_proc.c72 #define STARTS_WITH(mapname, prefix) (!strncmp(mapname, prefix, sizeof(prefix)-1)) argument
74 int bcc_mapping_is_file_backed(const char *mapname) { in bcc_mapping_is_file_backed() argument
75 return mapname[0] && !( in bcc_mapping_is_file_backed()
76 STARTS_WITH(mapname, "//anon") || in bcc_mapping_is_file_backed()
77 STARTS_WITH(mapname, "/dev/zero") || in bcc_mapping_is_file_backed()
78 STARTS_WITH(mapname, "/anon_hugepage") || in bcc_mapping_is_file_backed()
79 STARTS_WITH(mapname, "[stack") || in bcc_mapping_is_file_backed()
80 STARTS_WITH(mapname, "/SYSV") || in bcc_mapping_is_file_backed()
81 STARTS_WITH(mapname, "[heap]") || in bcc_mapping_is_file_backed()
82 STARTS_WITH(mapname, "[vsyscall]")); in bcc_mapping_is_file_backed()
[all …]
Dbcc_proc.h38 int bcc_mapping_is_file_backed(const char *mapname);
/external/python/cpython2/Tools/unicode/
Dgencodec.py372 for mapname in mapnames:
373 mappathname = os.path.join(dir, mapname)
376 name = os.path.split(mapname)[1]
383 print 'converting %s to %s and %s' % (mapname,
387 map = readmap(os.path.join(dir,mapname))
400 for mapname in mapnames:
401 if not mapname.endswith('.mapping'):
403 name = mapname[:-len('.mapping')]
405 print 'converting %s to %s' % (mapname,
408 map = marshal.load(open(os.path.join(dir,mapname),
[all …]
/external/python/cpython3/Tools/unicode/
Dgencodec.py378 for mapname in mapnames:
379 mappathname = os.path.join(dir, mapname)
382 name = os.path.split(mapname)[1]
389 print('converting %s to %s and %s' % (mapname,
393 map = readmap(os.path.join(dir,mapname))
406 for mapname in mapnames:
407 if not mapname.endswith('.mapping'):
409 name = mapname[:-len('.mapping')]
411 print('converting %s to %s' % (mapname,
414 map = marshal.load(open(os.path.join(dir,mapname),
[all …]
/external/python/cpython3/Doc/library/
Dnis.rst22 .. function:: match(key, mapname, domain=default_domain)
24 Return the match for *key* in map *mapname*, or raise an error
29 Note that *mapname* is first checked if it is an alias to another name.
35 .. function:: cat(mapname, domain=default_domain)
38 mapname)==value``. Note that both keys and values of the dictionary are
41 Note that *mapname* is first checked if it is an alias to another name.
/external/python/cpython2/Doc/library/
Dnis.rst20 .. function:: match(key, mapname[, domain=default_domain])
22 Return the match for *key* in map *mapname*, or raise an error
27 Note that *mapname* is first checked if it is an alias to another name.
34 .. function:: cat(mapname[, domain=default_domain])
37 mapname)==value``. Note that both keys and values of the dictionary are
40 Note that *mapname* is first checked if it is an alias to another name.
/external/ImageMagick/coders/
Dhtml.c213 mapname[MagickPathExtent], in WriteHTMLImage() local
273 (void) CopyMagickString(mapname,basename,MagickPathExtent); in WriteHTMLImage()
323 "src=\"%s\" style=\"border: 0;\" alt=\"Image map\" />\n",mapname, in WriteHTMLImage()
336 "<map id=\"%s\" name=\"%s\">\n",mapname,mapname); in WriteHTMLImage()
413 "<map id=\"%s\" name=\"%s\">\n",mapname,mapname); in WriteHTMLImage()
/external/python/cpython2/Modules/
Dnismodule.c236 typedef char *mapname; typedef
254 mapname map;
279 nis_xdr_mapname(XDR *xdrs, mapname *objp) in nis_xdr_mapname()
/external/python/cpython3/Modules/
Dnismodule.c243 typedef char *mapname; typedef
261 mapname map;
286 nis_xdr_mapname(XDR *xdrs, mapname *objp) in nis_xdr_mapname()
/external/bcc/src/cc/includes/
Dbcc_proc.h38 int bcc_mapping_is_file_backed(const char *mapname);