Home
last modified time | relevance | path

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

/external/selinux/libselinux/src/
Daudit2why.c65 char errormsg[PATH_MAX]; in check_booleans() local
92 snprintf(errormsg, sizeof(errormsg), in check_booleans()
94 PyErr_SetString( PyExc_RuntimeError, errormsg); in check_booleans()
104 snprintf(errormsg, sizeof(errormsg), in check_booleans()
106 PyErr_SetString( PyExc_RuntimeError, errormsg); in check_booleans()
114 snprintf(errormsg, sizeof(errormsg), in check_booleans()
116 PyErr_SetString( PyExc_RuntimeError, errormsg); in check_booleans()
130 snprintf(errormsg, sizeof(errormsg), in check_booleans()
134 PyErr_SetString( PyExc_RuntimeError, errormsg); in check_booleans()
195 char errormsg[PATH_MAX]; in __policy_init() local
[all …]
Dload_policy.c78 char *errormsg = NULL; in selinux_mkload_policy() local
84 #define DLERR() if ((errormsg = dlerror())) goto dlclose; in selinux_mkload_policy()
294 if (errormsg) in selinux_mkload_policy()
295 fprintf(stderr, "libselinux: %s\n", errormsg); in selinux_mkload_policy()
/external/mdnsresponder/mDNSShared/
Ddnssd_clientshim.c239 const char *errormsg = "Unknown"; in DNSServiceRegister() local
253 …else if (!MakeDomainLabelFromLiteralString(&n, name)) { errormsg = "B… in DNSServiceRegister()
254 …if (!regtype || !*regtype || !MakeDomainNameFromDNSNameString(&t, regtype)) { errormsg = "B… in DNSServiceRegister()
255 …if (!MakeDomainNameFromDNSNameString(&d, (domain && *domain) ? domain : "local.")) { errormsg = "B… in DNSServiceRegister()
256 …if (!MakeDomainNameFromDNSNameString(&h, (host && *host ) ? host : "")) { errormsg = "B… in DNSServiceRegister()
257 …if (!ConstructServiceName(&srv, &n, &t, &d)) { errormsg = "B… in DNSServiceRegister()
264 if (!x) { err = mStatus_NoMemoryErr; errormsg = "No memory"; goto fail; } in DNSServiceRegister()
283 if (err) { mDNSPlatformMemFree(x); errormsg = "mDNS_RegisterService"; goto fail; } in DNSServiceRegister()
292 LogMsg("DNSServiceBrowse(\"%s\", \"%s\") failed: %s (%ld)", regtype, domain, errormsg, err); in DNSServiceRegister()
409 const char *errormsg = "Unknown"; in DNSServiceBrowse() local
[all …]
/external/toybox/toys/pending/
Dtftp.c121 static int mkpkt_err(uint8_t *buffer, uint16_t errorcode, char *errormsg) in mkpkt_err() argument
127 strcpy((char*) &buffer[4], errormsg); in mkpkt_err()
128 return strlen(errormsg) + 5; in mkpkt_err()
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
Dappengine.py869 errormsg = self.request.get('error_description', error)
871 'The authorization request failed: %s' % _safe_html(errormsg))
/external/mdnsresponder/mDNSCore/
DDNSCommon.c691 const char *errormsg; in ConstructServiceName() local
731 if (len >= 0x40) { errormsg = "Service instance name too long"; goto fail; } in ConstructServiceName()
749 …if (src[1] != '_') { errormsg = "Application protocol name must begin with underscore"; goto fail;… in ConstructServiceName()
769 errormsg = "Application protocol name must contain only letters, digits, and hyphens"; in ConstructServiceName()
781 …if (!ValidTransportProtocol(src)) { errormsg = "Transport protocol name must be _udp or _tcp"; got… in ConstructServiceName()
784 if (*src) { errormsg = "Service type must have only two labels"; goto fail; } in ConstructServiceName()
787 if (!domain->c[0]) { errormsg = "Service domain must be non-empty"; goto fail; } in ConstructServiceName()
789 { errormsg = "Illegal domain \"local.arpa.\" Use \"local.\" (or empty string)"; goto fail; } in ConstructServiceName()
791 if (!dst) { errormsg = "Service domain too long"; goto fail; } in ConstructServiceName()
795 LogMsg("ConstructServiceName: %s: %#s.%##s%##s", errormsg, name->c, type->c, domain->c); in ConstructServiceName()
/external/selinux/checkpolicy/
Dpolicy_define.c72 static char errormsg[ERRORMSG_LEN + 1] = {0}; variable
91 vsnprintf(errormsg, ERRORMSG_LEN, fmt, ap); in yyerror2()
92 yyerror(errormsg); in yyerror2()
/external/bison/build-aux/
Dtexinfo.tex233 % @errormsg{MSG}. Do the index-like expansions on MSG, but if things
237 \def\errormsg{\begingroup \indexnofonts \doerrormsg}
/external/libmicrohttpd/doc/
Dtexinfo.tex234 % @errormsg{MSG}. Do the index-like expansions on MSG, but if things
238 \def\errormsg{\begingroup \indexnofonts \doerrormsg}
/external/dbus/
DChangeLog.pre-1-02883 (various places): when throwing errors fix to use errormsg instead