Searched refs:strval (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_conf_str.c95 static void check_mail_conf_str(const char *name, const char *strval, argument
98 ssize_t len = strlen(strval);
102 (long) len, min, name, strval);
105 (long) len, max, name, strval);
113 const char *strval; local
115 if ((strval = mail_conf_lookup_eval(name)) == 0) {
116 strval = mail_conf_eval(defval);
117 mail_conf_update(name, strval);
119 check_mail_conf_str(name, strval, min, max);
120 return (mystrdup(strval));
129 const char *strval; local
149 const char *strval; local
[all...]
H A Dmail_conf_raw.c76 static void check_mail_conf_raw(const char *name, const char *strval, argument
79 ssize_t len = strlen(strval);
83 (long) len, min, name, strval);
86 (long) len, max, name, strval);
94 const char *strval; local
96 if ((strval = mail_conf_lookup(name)) == 0) {
97 strval = defval;
98 mail_conf_update(name, strval);
100 check_mail_conf_raw(name, strval, min, max);
101 return (mystrdup(strval));
111 const char *strval; local
[all...]
H A Dcfg_parser.c120 const char *strval; local
123 if ((strval = (char *) dict_lookup(parser->name, name)) == 0)
124 strval = defval;
126 len = strlen(strval);
129 parser->name, len, min, name, strval);
132 parser->name, len, max, name, strval);
133 return (mystrdup(strval));
155 const char *strval; local
160 if ((strval = (char *) dict_lookup(parser->name, name)) != 0) {
162 intval = longval = strtol(strval,
195 const char *strval; local
265 char *strval; local
[all...]
H A Dtok822_node.c9 /* TOK822 *tok822_alloc(type, strval)
11 /* const char *strval;
55 TOK822 *tok822_alloc(int type, const char *strval) argument
66 strval == 0 ? vstring_alloc(10) :
67 vstring_strcpy(vstring_alloc(strlen(strval) + 1), strval));
H A Dmail_conf_bool.c88 const char *strval; local
90 if ((strval = mail_conf_lookup_eval(name)) == 0) {
93 if (strcasecmp(strval, CONFIG_BOOL_YES) == 0) {
95 } else if (strcasecmp(strval, CONFIG_BOOL_NO) == 0) {
98 msg_fatal("bad boolean configuration: %s = %s", name, strval);
H A Dmail_conf_nbool.c89 const char *strval; local
91 if ((strval = mail_conf_lookup_eval(name)) == 0) {
94 if (strcasecmp(strval, CONFIG_BOOL_YES) == 0) {
96 } else if (strcasecmp(strval, CONFIG_BOOL_NO) == 0) {
99 msg_fatal("bad boolean configuration: %s = %s", name, strval);
H A Dconv_time.c9 /* int conv_time(strval, timval, def_unit);
10 /* const char *strval;
20 /* .IP strval
62 int conv_time(const char *strval, int *timval, int def_unit) argument
69 intval = longval = strtol(strval, &end, 10);
70 if (*strval == 0 || errno == ERANGE || longval != intval || intval < 0
H A Dmail_conf_long.c100 const char *strval; local
103 if ((strval = mail_conf_lookup_eval(name)) != 0) {
105 *longval = strtol(strval, &end, 10);
106 if (*strval == 0 || *end != 0 || errno == ERANGE)
107 msg_fatal("bad numerical configuration: %s = %s", name, strval);
H A Dmail_conf_int.c100 const char *strval; local
104 if ((strval = mail_conf_lookup_eval(name)) != 0) {
106 *intval = longval = strtol(strval, &end, 10);
107 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != *intval)
108 msg_fatal("bad numerical configuration: %s = %s", name, strval);
H A Dmail_conf_nint.c105 const char *strval; local
109 if ((strval = mail_conf_lookup_eval(name)) != 0) {
111 *intval = longval = strtol(strval, &end, 10);
112 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != *intval)
113 msg_fatal("bad numerical configuration: %s = %s", name, strval);
H A Dmail_conf_time.c97 const char *strval; local
99 if ((strval = mail_conf_lookup_eval(name)) == 0)
101 if (conv_time(strval, intval, def_unit) == 0)
102 msg_fatal("parameter %s: bad time value or unit: %s", name, strval);
H A Dmail_version.c94 static int mail_version_int(const char *strval) argument
101 intval = longval = strtol(strval, &end, 10);
102 if (*strval == 0 || *end != 0 || errno == ERANGE || longval != intval)
/macosx-10.10.1/postfix-255/postfix/src/smtpd/
H A Dsmtpd_token.h21 char *strval; member in struct:SMTPD_TOKEN
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Dncparse.c202 char strval[255+1]; local
204 char strval[4095+1]; local
220 while ( (tok = gettok (fp, strval, sizeof strval)) != EOF )
229 if ( gettok (fp, strval, sizeof (strval)) == TOK_STRING )
232 strval, dir);
233 if ( *strval != '/' && *dir )
234 snprintf (path, sizeof (path), "%s/%s", dir, strval);
236 snprintf (path, sizeof (path), "%s", strval);
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/x509v3/
H A Dv3_enum.c88 long strval; local
89 strval = ASN1_ENUMERATED_get(e);
91 if(strval == enam->bitnum) return BUF_strdup(enam->lname);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py22 strval = CFURLGetString(ref)
23 self.failUnlessEqual(strval, unicode(url, "utf-8"))
57 strval = CFURLGetString(ref)
58 self.failUnlessEqual(strval, url)
72 strval = CFURLGetString(ref)
73 self.failUnlessEqual(strval, u"http://www.omroep.nl/sport/socker")
78 strval = CFURLGetString(ref)
79 self.failUnlessEqual(strval, u"http://www.omroep.nl/dummy")
84 strval = CFURLGetString(ref)
85 self.failUnlessEqual(strval,
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Dsyslog.c34 const char *strval; member in struct:dsn_c_pvt_sfnt
76 for (i = 0; facilities[i].strval != NULL; i++) {
77 if (strcasecmp(facilities[i].strval, str) == 0) {
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Dsyslog.c34 const char *strval; member in struct:dsn_c_pvt_sfnt
76 for (i = 0; facilities[i].strval != NULL; i++) {
77 if (strcasecmp(facilities[i].strval, str) == 0) {
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dgetopts.c94 char strval[2], numval[16]; local
207 strval[0] = (char)sh_optopt;
208 strval[1] = '\0';
209 bind_variable ("OPTARG", strval, 0);
224 strval[0] = (char)sh_optopt;
225 strval[1] = '\0';
226 bind_variable ("OPTARG", strval, 0);
238 strval[0] = (char) ret;
239 strval[1] = '\0';
240 return (getopts_bind_variable (name, strval));
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py21 strval = CFURLGetString(ref)
22 self.assertEqual(strval, unicode(url, "utf-8"))
56 strval = CFURLGetString(ref)
57 self.assertEqual(strval, url)
71 strval = CFURLGetString(ref)
72 self.assertEqual(strval, u"http://www.omroep.nl/sport/socker")
77 strval = CFURLGetString(ref)
78 self.assertEqual(strval, u"http://www.omroep.nl/dummy")
83 strval = CFURLGetString(ref)
84 self.assertEqual(strval,
[all...]
/macosx-10.10.1/libxslt-13/libxslt/libexslt/
H A Dcommon.c37 xmlChar *strval; local
54 strval = xmlXPathPopString (ctxt);
56 txt = xmlNewDocText (fragment, strval);
70 if (strval != NULL)
71 xmlFree (strval);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfurl.py33 strval = CFURLGetString(ref)
34 self.assertEqual(strval, unicode(url, "utf-8"))
68 strval = CFURLGetString(ref)
69 self.assertEqual(strval, url)
83 strval = CFURLGetString(ref)
84 self.assertEqual(strval, b"http://www.omroep.nl/sport/socker".decode('ascii'))
89 strval = CFURLGetString(ref)
90 self.assertEqual(strval, b"http://www.omroep.nl/dummy".decode('ascii'))
95 strval = CFURLGetString(ref)
96 self.assertEqual(strval,
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DTlsOptions.cpp101 std::string strval; local
104 strval=std::string(value);
107 return strval;
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Dsyslog.c39 const char *strval; member in struct:dsn_c_pvt_sfnt
81 for (i = 0; facilities[i].strval != NULL; i++) {
82 if (strcasecmp(facilities[i].strval, str) == 0) {
/macosx-10.10.1/ntp-92/lib/isc/win32/
H A Dsyslog.c39 const char *strval; member in struct:dsn_c_pvt_sfnt
81 for (i = 0; facilities[i].strval != NULL; i++) {
82 if (strcasecmp(facilities[i].strval, str) == 0) {

Completed in 1204 milliseconds

123