HomeSort by relevance Sort by last modified time
    Searched full:getconfigoption (Results 1 - 3 of 3) sorted by null

  /external/mdnsresponder/mDNSShared/
PlatformCommon.c 85 mDNSlocal mDNSBool GetConfigOption(char *dst, const char *option, FILE *f)
89 if (len + 1 + MAX_ESCAPED_DOMAIN_NAME > sizeof(buf)-1) { LogMsg("GetConfigOption: option %s too long", option); return mDNSfalse; }
118 if (DomainDiscoveryDisabled && GetConfigOption(buf, "DomainDiscoveryDisabled", f) && !strcasecmp(buf, "true")) *DomainDiscoveryDisabled = mDNStrue;
119 if (hostname && GetConfigOption(buf, "hostname", f) && !MakeDomainNameFromDNSNameString(hostname, buf)) goto badf;
120 if (domain && GetConfigOption(buf, "zone", f) && !MakeDomainNameFromDNSNameString(domain, buf)) goto badf;
122 GetConfigOption(buf, "secret-64", f); // failure means no authentication
  /external/clang/tools/scan-view/
Reporter.py 42 def getValue(self,r,bugtype,getConfigOption):
43 return getConfigOption(r.getName(),self.getName())
48 def getHTML(self,r,bugtype,getConfigOption):
53 </tr>"""%(self.getName(),r.getName(),self.getName(),self.getValue(r,bugtype,getConfigOption))
60 def getHTML(self,r,bugtype,getConfigOption):
61 default = self.getValue(r,bugtype,getConfigOption)
164 def getValue(self,r,bugtype,getConfigOption):
ScanView.py 494 def getConfigOption(section, field):
523 active = int(getConfigOption('ScanView','reporter'))
533 options = '\n'.join([ o.getHTML(r,title,getConfigOption) for o in r.getParameters()])

Completed in 414 milliseconds