HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 1251 - 1275 of 12087) sorted by null

<<51525354555657585960>>

  /external/iptables/extensions/
libxt_pkttype.c 18 const char *name; member in struct:pkttypes
45 printf("\t%-14s\t\t%s\n", supported_types[i].name, supported_types[i].help);
58 {.name = "pkt-type", .id = O_PKTTYPE, .type = XTTYPE_STRING,
68 if(strcasecmp(pkttype, supported_types[i].name)==0)
94 printf("%s", supported_types[i].name);
120 .name = "pkttype",
  /external/iw/
ibss.c 35 const char *name; member in struct:__anon13652
40 { .name = "HT20",
44 { .name = "HT40+",
48 { .name = "HT40-",
52 { .name = "NOHT",
56 { .name = "5MHZ",
60 { .name = "10MHZ",
85 if (strcasecmp(chanmode[i].name, argv[0]) == 0) {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/
NormalizedFileNames.java 26 * <li>The same input id is mapped to the same file name.</li>
28 * <li>For safe characters the file name corresponds to the input id, other
30 * <li>File names are case aware, i.e. the same file name but with different
53 String name = mapping.get(id); local
54 if (name != null) {
55 return name;
57 name = replaceIllegalChars(id);
58 name = ensureUniqueness(name);
59 mapping.put(id, name);
    [all...]
  /external/javassist/src/main/javassist/
CtArray.java 24 // the name of array type ends with "[]".
25 CtArray(String name, ClassPool cp) {
26 super(name);
81 String name = getName(); local
82 return pool.get(name.substring(0, name.length() - 2));
98 public CtMethod getMethod(String name, String desc)
101 return getSuperclass().getMethod(name, desc);
  /external/jetty/src/java/org/eclipse/jetty/server/handler/jmx/
AbstractHandlerMBean.java 78 String name = null; local
82 name = getContextName(context);
85 if (name != null)
86 return name;
95 String name = null; local
100 name = idx < 0 ? context.getContextPath() : context.getContextPath().substring(++idx);
101 if (name==null || name.length()==0)
102 name= "ROOT";
105 if (name==null && context.getBaseResource()!=null
    [all...]
ContextHandlerMBean.java 42 String name = (String)en.nextElement(); local
43 Object value = attrs.getAttribute(name);
44 map.put(name,value);
49 public void setContextAttribute(String name, Object value)
52 attrs.setAttribute(name,value);
55 public void setContextAttribute(String name, String value)
58 attrs.setAttribute(name,value);
61 public void removeContextAttribute(String name)
64 attrs.removeAttribute(name);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java 133 String name = ((ANameVariable) functionName).getWord().getText(); local
134 if ("max".equals(name) || "min".equals(name) || "abs".equals(name) || "subcount".equals(name)) {
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariableValue.java 27 * if there is no Data object associated with the given name.
36 private final String name; field in class:VariableValue
42 public VariableValue(String name, DataContext dataContext) {
49 this.name = name;
53 return name;
58 reference = dataContext.findVariable(name, false);
79 return name;
  /external/kernel-headers/original/uapi/linux/
sync.h 20 * @name: name of new fence
25 char name[32]; /* name of new fence */ member in struct:sync_merge_data
32 * @obj_name: name of parent sync_timeline
33 * @driver_name: name of driver implementing the parent
53 * @name: name of fence
59 char name[32]; member in struct:sync_fence_info_data
  /external/libbrillo/brillo/
any_unittest.cc 211 std::string name; member in struct:Person
216 EXPECT_EQ("Jack", val.Get<Person>().name);
217 val.GetPtr<Person>()->name = "Joe";
219 EXPECT_EQ("Joe", val.Get<Person>().name);
221 EXPECT_EQ("Jack", val2.Get<Person>().name);
297 std::string name; member in struct:Person
  /external/libchrome/base/
sys_info_mac.cc 84 char name[256]; local
85 size_t len = arraysize(name);
86 if (sysctlbyname("machdep.cpu.brand_string", &name, &len, NULL, 0) == 0)
87 return name;
  /external/libchrome/base/threading/
platform_thread_linux.cc 80 void PlatformThread::SetName(const std::string& name) {
81 ThreadIdNameManager::GetInstance()->SetName(CurrentId(), name); local
82 tracked_objects::ThreadData::InitializeThreadContext(name);
86 // the process name for the LWP. We don't want to do this for the main
92 // http://0pointer.de/blog/projects/name-your-threads.html
93 // Set the name for the LWP (which gets truncated to 15 characters).
96 // that it can set the name of threads other than the current thread.
97 int err = prctl(PR_SET_NAME, name.c_str());
  /external/libcxxabi/src/
cxa_default_handlers.cpp 49 // Try to get demangled name of thrown_type
53 const char* name = __cxa_demangle(thrown_type->name(), buf, &len, &status); local
55 name = thrown_type->name();
64 cause, name, e->what());
69 cause, name);
  /external/libdrm/nouveau/nvif/
if0002.h 15 char name[64]; member in struct:nvif_perfmon_query_domain_v0
25 char name[64]; member in struct:nvif_perfmon_query_signal_v0
36 char name[64]; member in struct:nvif_perfmon_query_source_v0
  /external/libedit/src/
map.h 18 * 3. Neither the name of the University nor the names of its contributors
44 const Char *name; /* function name for bind command */ member in struct:el_bindings_t
  /external/libpcap/msdos/
makefile 66 bison --name-prefix=pcap_ --yacc --defines grammar.y
  /external/libpng/contrib/examples/
iccfrompng.c 67 png_charp name; local
71 if (png_get_iCCP(png_ptr, info_ptr, &name, &compression_type, &profile,
  /external/libunwind/tests/
Gtest-init.cxx 51 char name[128], off[32]; local
63 name[0] = '\0';
65 if (unw_get_proc_name (&cursor, name, sizeof (name), &offset) == 0
69 printf (" [%lx] <%s%s>\n", (long) ip, name, off);
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filelistinfo.h 40 char name[NAME_MAX]; member in struct:_FileListItemInfo
55 int AddFileListItemInfo(FileListInfoPtr fileListInfoPtr, char* name, unsigned int size, unsigned int data);
  /external/libvpx/libvpx/
args.h 22 const char *name; member in struct:arg
29 const char *name; member in struct:arg_enum_list
  /external/libvpx/libvpx/test/
vp9_frame_parallel_test.cc 33 const char *name; member in struct:__anon17084::PauseFileList
97 for (const PauseFileList *iter = files; iter->name != NULL; ++iter) {
98 SCOPED_TRACE(iter->name);
101 DecodeFileWithPause(iter->name, t, iter->pause_frame_num))
123 const char *name; member in struct:__anon17084::FileList
178 for (const FileList *iter = files; iter->name != NULL; ++iter) {
179 SCOPED_TRACE(iter->name);
182 DecodeFile(iter->name, t, iter->expected_frame_count))
  /external/libweave/examples/daemon/sample/
sample.cc 21 "name": { "type": "string" }
88 std::string name; local
89 if (!params.GetString("name", &name)) {
92 "Name is missing");
98 result.SetString("reply", "Hello " + name);
  /external/libweave/src/privet/
wifi_ssid_generator.cc 84 std::string name = gcd_->GetName(); local
87 name = name.substr(0, kDeviceNameSize - idx.size() - 1);
91 base::StringPrintf(kSsidFormat, name.c_str(), idx.c_str(),
  /external/libxml2/os400/iconv/
iconv.c 21 *** Bring-in the name-->CCSID mapping DFA tables.
37 const unsigned char * name; local
40 *** Get the CCSID correspong to the name at *`namep'.
42 *** name and return the CCSID.
46 if (!namep || !(name = *namep)) {
58 *namep = name;
73 } while (label_array[l] != *name);
76 name++;
  /external/libxml2/
xmlmodule.c 23 unsigned char *name; member in struct:_xmlModule
27 static void *xmlModulePlatformOpen(const char *name);
29 static int xmlModulePlatformSymbol(void *handle, const char *name, void **result);
46 const char *name = NULL; local
49 name = (const char *) module->name;
54 name, NULL, 0, 0,
60 * @name: the module name
63 * Opens a module/shared library given its name or pat
    [all...]

Completed in 1725 milliseconds

<<51525354555657585960>>