Searched refs:attr (Results 101 - 125 of 1316) sorted by relevance

1234567891011>>

/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dlib_chgat.c48 wchgat(WINDOW *win, int n, attr_t attr, short color, const void *opts GCC_UNUSED) argument
52 T((T_CALLED("wchgat(%p,%d,%s,%d)"), win, n, _traceattr(attr), color));
57 toggle_attr_on(attr, COLOR_PAIR(color));
60 SetAttr(line->text[i], attr);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dgetattr.c36 char *attr; local
83 tag = ber_scanf( ber, "{ax}", &attr );
91 return attr;
99 char *attr; local
113 tag = ber_scanf( ber, "{ax}", &attr );
119 return attr;
129 BerValue *attr, BerVarray *vals )
140 assert( attr != NULL );
142 attr->bv_val = NULL;
143 attr
128 ldap_get_attribute_ber( LDAP *ld, LDAPMessage *entry, BerElement *ber, BerValue *attr, BerVarray *vals ) argument
[all...]
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dipp.c132 static void url_encode_attr(ipp_attribute_t *attr, char *buffer,
152 ipp_attribute_t *attr; /* Current attribute */ local
156 ipp_attribute_t *username; /* requesting-user-name attr */
228 for (attr = con->request->attrs, group = attr->group_tag;
229 attr;
230 attr = attr->next)
231 if (attr->group_tag < group && attr
745 ipp_attribute_t *attr; /* job-sheets attribute */ local
874 ipp_attribute_t *attr; /* Printer attribute */ local
1211 ipp_attribute_t *attr, /* Current attribute */ local
1964 *attr; /* Current attribute */ local
2225 ipp_attribute_t *attr; /* Printer attribute */ local
2941 ipp_attribute_t *attr, /* job-id attribute */ local
3126 ipp_attribute_t *attr; /* Attribute in request */ local
3357 ipp_attribute_t *attr; /* Current attribute */ local
3893 ipp_attribute_t *attr; /* Attribute */ local
4099 ipp_attribute_t *attr; /* Attribute */ local
4997 ipp_attribute_t *attr; /* Current attribute */ local
5237 ipp_attribute_t *attr; /* Current attribute */ local
5852 ipp_attribute_t *attr; /* Current attribute */ local
5998 ipp_attribute_t *attr; /* Current attribute */ local
6116 ipp_attribute_t *attr; /* Current attribute */ local
7031 ipp_attribute_t *attr; /* Current attribute */ local
7253 ipp_attribute_t *attr; /* Attribute */ local
7401 ipp_attribute_t *attr; /* Attribute */ local
7422 ipp_attribute_t *attr; /* Current job-hold-until */ local
7623 ipp_attribute_t *attr; /* Current attribute */ local
7950 ipp_attribute_t *attr; /* Current attribute */ local
8243 ipp_attribute_t *attr, /* Current attribute */ local
8396 ipp_attribute_t *attr; /* printer-state-message text */ local
8542 ipp_attribute_t *attr; /* Current attribute */ local
8768 ipp_attribute_t *attr; /* Current attribute */ local
9101 ipp_attribute_t *attr; /* Current attribute */ local
9713 ipp_attribute_t *attr, /* Current attribute */ local
10098 ipp_attribute_t *attr; /* Printer attribute */ local
10180 ipp_attribute_t *attr; /* Current attribute */ local
10512 ipp_attribute_t *attr; /* printer-state-message attribute */ local
10578 url_encode_attr(ipp_attribute_t *attr, char *buffer, int bufsize) argument
10744 ipp_attribute_t *attr, /* Current attribute */ local
[all...]
/macosx-10.9.5/apache-786.1/httpd/os/os2/
H A Dutil_os2.c36 apr_procattr_t *attr, apr_pool_t *p)
38 return apr_proc_create(newproc, progname, args, env, attr, p);
/macosx-10.9.5/screen-22/screen/
H A Dimage.h55 unsigned char attr; member in struct:mchar
64 unsigned char *attr; member in struct:mline
74 bcopy((char *)(ml)->attr, (char *)mline_old.attr, (n)); \
82 bcopy((char *)(ml)->attr + (xf), (char *)(ml)->attr + (xt), (n)); \
90 if ((ml)->attr != null) bzero((char *)(ml)->attr + (x), (n)); \
98 && (ml1)->attr[x] == (ml2)->attr[
[all...]
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dtestipp.c260 *attr; /* Other attribute */ local
452 if ((attr = ippFindAttribute(media_size->values[0].collection,
455 if ((attr = ippFindAttribute(media_size->values[0].collection,
460 ippTagString(attr->value_tag));
464 else if (attr->values[0].integer != 21590)
467 attr->values[0].integer);
470 else if ((attr = ippFindAttribute(media_size->values[0].collection,
474 if ((attr = ippFindAttribute(media_size->values[0].collection,
479 ippTagString(attr->value_tag));
483 else if (attr
778 ipp_attribute_t *attr; /* Current attribute */ local
[all...]
/macosx-10.9.5/cups-372.4/cups/berkeley/
H A Dlpq.c319 ipp_attribute_t *attr; /* Current attribute */ local
433 for (attr = response->attrs; attr != NULL; attr = attr->next)
439 while (attr != NULL && attr->group_tag != IPP_TAG_JOB)
440 attr = attr->next;
442 if (attr
604 ipp_attribute_t *attr; /* Current attribute */ local
[all...]
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dthread_macosx.c70 pthread_attr_t attr; local
73 if (0 != pthread_attr_init(&attr))
77 if (0 != pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED))
79 pthread_attr_destroy(&attr);
83 rx = pthread_create(pthThread, &attr, pvFunction, pvArg);
85 pthread_attr_destroy(&attr);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/unix/
H A Dthread.c28 apr_threadattr_t *attr = data; local
31 rv = pthread_attr_destroy(&attr->attr);
47 stat = pthread_attr_init(&(*new)->attr);
67 APR_DECLARE(apr_status_t) apr_threadattr_detach_set(apr_threadattr_t *attr,
74 if ((stat = pthread_attr_setdetachstate(&attr->attr, &arg)) == 0) {
76 if ((stat = pthread_attr_setdetachstate(&attr->attr,
90 APR_DECLARE(apr_status_t) apr_threadattr_detach_get(apr_threadattr_t *attr)
[all...]
/macosx-10.9.5/apr-30/apr/apr/threadproc/unix/
H A Dthread.c28 apr_threadattr_t *attr = data; local
31 rv = pthread_attr_destroy(&attr->attr);
47 stat = pthread_attr_init(&(*new)->attr);
67 APR_DECLARE(apr_status_t) apr_threadattr_detach_set(apr_threadattr_t *attr,
74 if ((stat = pthread_attr_setdetachstate(&attr->attr, &arg)) == 0) {
76 if ((stat = pthread_attr_setdetachstate(&attr->attr,
90 APR_DECLARE(apr_status_t) apr_threadattr_detach_get(apr_threadattr_t *attr)
[all...]
/macosx-10.9.5/postfix-252/postfix/examples/smtpd-policy/
H A Dgreylist.pl101 my ($_host_name) = $attr{"host_name"};
111 $value = read_whitelist_db($attr{"host_name"});
115 syslog $syslog_priority, "adding host: %s to whitelist host", $attr{"host_name"} if $verbose;
116 update_whitelist_db($attr{"host_name"}, 1);
120 print WHITELIST_FILE "$attr{\"host_name\"}\n";
127 my ($_domain_name) = $attr{"domain_name"};
137 $value = read_whitelist_db($attr{"domain_name"});
141 syslog $syslog_priority, "adding domain: %s to whitelist doman", $attr{"domain_name"} if $verbose;
142 update_whitelist_db($attr{"domain_name"}, 1);
146 print WHITELIST_FILE "$attr{\"domain_nam
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/rss/
H A DRSSAtomParser.cpp122 for (xmlAttr* attr = node->properties; attr; attr = attr->next) {
123 String name(reinterpret_cast<const char*>(attr->name));
126 base = textFromXMLAttr(attr);
194 for (xmlAttr* attr = node->properties; attr; attr = attr
[all...]
/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dipp-var.c177 ipp_attribute_t *attr, /* Current attribute */ local
187 group = IPP_TAG_ZERO, attr = response->attrs;
188 attr;
189 attr = attr->next)
191 if (attr->group_tag != group)
193 group = attr->group_tag;
197 first = attr;
209 if (attr->name && attr
281 ipp_attribute_t *attr; /* Current attribute */ local
556 ipp_attribute_t *attr; /* Current job attribute */ local
955 ipp_attribute_t *attr; /* Attribute in response... */ local
1301 ipp_attribute_t *attr, /* Attribute in response... */ local
[all...]
/macosx-10.9.5/iodbc-42.5/iodbc/admin/
H A Dlibiodbc.spec.in189 %attr(0755, root, root) /usr/bin/iodbctest
190 %attr(0755, root, root) /usr/bin/iodbctestw
191 %attr(0755, root, root) /usr/lib/libiodbc.so.*
192 %attr(0755, root, root) /usr/lib/libiodbcinst.so.*
193 %attr(0644, root, root) %{_mandir}/man1/iodbctest.1*
194 %attr(0644, root, root) %{_mandir}/man1/iodbctestw.1*
195 #%attr(0644, root, root) %config /etc/odbc.ini
196 #%attr(0644, root, root) %config /etc/odbcinst.ini
200 %attr(0644, root, root) %doc AUTHORS
201 %attr(064
[all...]
/macosx-10.9.5/launchd-842.92.1/src/
H A Dlog.c73 _logmsg_add(struct launchd_syslog_attr *attr, int err_num, const char *msg) argument
75 size_t lm_sz = sizeof(struct logmsg_s) + strlen(msg) + strlen(attr->from_name) + strlen(attr->about_name) + strlen(attr->session_name) + 4;
89 lm->from_pid = attr->from_pid;
90 lm->about_pid = attr->about_pid;
92 lm->pri = attr->priority;
97 data_off += sprintf(data_off, "%s", attr->from_name) + 1;
99 data_off += sprintf(data_off, "%s", attr->about_name) + 1;
101 data_off += sprintf(data_off, "%s", attr
130 struct launchd_syslog_attr attr = { local
148 launchd_vsyslog(struct launchd_syslog_attr *attr, const char *fmt, va_list args) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cssm/lib/
H A Dcssmcontext.cpp71 if (Attr *attr = find(attributes[0].AttributeType)) {
72 if (attr->baseType() == CSSM_ATTRIBUTE_DATA_UINT32) {
74 Attr oldAttr = *attr;
75 *attr = attributes[0];
78 *attr = oldAttr;
84 size_t oldSize = size(*attr);
86 Attr oldAttr = *attr;
88 *attr = attributes[0];
93 *attr = oldAttr;
98 walk(copier, *attr);
104 const Attr *attr = static_cast<const Attr *>(&attributes[0]); local
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/objc/
H A D_pythonify.py18 def __getattr__(self, attr):
19 return getattr(self.__pyobjc_object__, attr)
34 def __getattr__(self, attr):
35 return getattr(self.__pyobjc_object__, attr)
39 def __setattr__(self, attr, value):
40 if attr != '__pyobjc_object__':
41 raise AttributeError, "'%s' object has no attribute '%s')"%(self.__class__.__name__, attr)
57 def __getattr__(self, attr):
58 return getattr(self.__pyobjc_object__, attr)
73 def __getattr__(self, attr)
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/menubar/
H A Dnode.tcl101 method attr.keys { {globpat ""} } {
113 method attr.set { key value } {
121 method attr.unset { key } {
129 method attr.exists { key } {
136 method attr.get { key } {
147 method attr.append { key value } {
156 method attr.lappend { key value } {
/macosx-10.9.5/CPANInternal-140/Graph/lib/Graph/
H A DAttribute.pm10 my %attr = @_;
12 if (exists $attr{array}) {
13 my $i = $attr{array};
22 } elsif (exists $attr{hash}) {
23 my $k = $attr{hash};
45 if (exists $attr{map}) {
46 my $map = $attr{map};
/macosx-10.9.5/CPANInternal-140/Graph-0.94/lib/Graph/
H A DAttribute.pm10 my %attr = @_;
12 if (exists $attr{array}) {
13 my $i = $attr{array};
22 } elsif (exists $attr{hash}) {
23 my $k = $attr{hash};
45 if (exists $attr{map}) {
46 my $map = $attr{map};
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Disakmp_cfg.c352 struct isakmp_data *attr; local
363 attr = (struct isakmp_data *)(attrpl + 1);
367 type = ntohs(attr->type);
375 s_isakmp_cfg_type(type), ntohs(attr->lorv));
380 attr, ntohs(attrpl->id))) != 0)
393 tlen -= sizeof(*attr);
394 attr++;
398 type = ntohs(attr->type);
399 alen = ntohs(attr->lorv);
425 attr, ntoh
528 struct isakmp_data *attr; local
706 struct isakmp_data *attr; local
1466 struct isakmp_data *attr; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-ldap/
H A Dsearch.c646 Attribute *attr, **attrp; local
688 attr = attr_alloc( NULL );
689 if ( attr == NULL ) {
692 if ( slap_bv2ad( &a, &attr->a_desc, &text )
695 if ( slap_bv2undef_ad( &a, &attr->a_desc, &text,
704 attr_free( attr );
710 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry
711 || attr->a_desc == slap_schema.si_ad_entryDN )
726 attr_free( attr );
730 if ( ber_scanf( &ber, "[W]", &attr
895 char *attr[3], **attrp = NULL; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DKCCursor.cpp69 const SecKeychainAttribute *end=&attrList->attr[attrList->count];
71 for (const SecKeychainAttribute *attr=attrList->attr; attr != end; ++attr)
75 if (attr->tag <' ') // ok, is this a key schema? Handle differently, just because we can...
77 temp = gKeyAttributeLookupTable[attr->tag];
81 temp = &Schema::attributeInfo(attr->tag);
84 void *buf = attr->data;
85 UInt32 length = attr
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DKCCursor.cpp69 const SecKeychainAttribute *end=&attrList->attr[attrList->count];
71 for (const SecKeychainAttribute *attr=attrList->attr; attr != end; ++attr)
75 if (attr->tag <' ') // ok, is this a key schema? Handle differently, just because we can...
77 temp = gKeyAttributeLookupTable[attr->tag];
81 temp = &Schema::attributeInfo(attr->tag);
84 void *buf = attr->data;
85 UInt32 length = attr
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DKCCursor.cpp69 const SecKeychainAttribute *end=&attrList->attr[attrList->count];
71 for (const SecKeychainAttribute *attr=attrList->attr; attr != end; ++attr)
75 if (attr->tag <' ') // ok, is this a key schema? Handle differently, just because we can...
77 temp = gKeyAttributeLookupTable[attr->tag];
81 temp = &Schema::attributeInfo(attr->tag);
84 void *buf = attr->data;
85 UInt32 length = attr
[all...]

Completed in 180 milliseconds

1234567891011>>