/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 194 def is_internal_attribute(obj, attr): 207 if attr in UNSAFE_FUNCTION_ATTRIBUTES: 210 if attr in UNSAFE_FUNCTION_ATTRIBUTES or attr in UNSAFE_METHOD_ATTRIBUTES: 213 if attr == "mro": 218 if attr in UNSAFE_GENERATOR_ATTRIBUTES: 221 if attr in UNSAFE_COROUTINE_ATTRIBUTES: 226 if attr in UNSAFE_ASYNC_GENERATOR_ATTRIBUTES: 228 return attr.startswith("__") 231 def modifies_known_mutable(obj, attr) [all...] |
/third_party/skia/third_party/externals/swiftshader/src/WSI/ |
H A D | XlibSurfaceKHR.cpp | 55 XWindowAttributes attr; in getSurfaceCapabilities() local 56 libX11->XGetWindowAttributes(pDisplay, window, &attr); in getSurfaceCapabilities() 57 VkExtent2D extent = { static_cast<uint32_t>(attr.width), static_cast<uint32_t>(attr.height) }; in getSurfaceCapabilities() 67 XWindowAttributes attr; in attachImage() local 68 libX11->XGetWindowAttributes(pDisplay, window, &attr); in attachImage() 75 XImage *xImage = libX11->XCreateImage(pDisplay, visual, attr.depth, ZPixmap, 0, buffer, extent.width, extent.height, 32, bytes_per_line); in attachImage() 101 XWindowAttributes attr; in present() local 102 libX11->XGetWindowAttributes(pDisplay, window, &attr); in present() 103 VkExtent2D windowExtent = { static_cast<uint32_t>(attr in present() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/ |
H A D | 2-1.c | 11 * 1. Initialize pthread_attr_t object (attr) 12 * 2. set stacksize to attr 13 * 3. create a thread with the attr 40 pthread_attr_t attr; in thread_func() local 44 if ((rc = pthread_getattr_np(pthread_self(), &attr)) != 0) { in thread_func() 48 if ((rc = pthread_attr_getstacksize(&attr, &ssize)) != 0) { in thread_func() 65 pthread_attr_t attr; in main() local 69 /* Initialize attr */ in main() 70 rc = pthread_attr_init(&attr); in main() 91 rc = pthread_attr_setstacksize(&attr, stack_siz in main() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
H A D | pthread_create.c | 91 pthread_attr_t attr; in pthread_create_0400() local 93 pthread_attr_init(&attr); in pthread_create_0400() 99 ret = pthread_attr_setstack(&attr, stackAddr, PTHREADSTACK); in pthread_create_0400() 104 ret = pthread_create(&ph, &attr, threadfunc, (char *)(URL)); in pthread_create_0400() 106 pthread_attr_destroy(&attr); in pthread_create_0400() 118 pthread_attr_t attr; in pthread_create_0500() local 120 pthread_attr_init(&attr); in pthread_create_0500() 121 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); in pthread_create_0500() 122 int32_t ret = pthread_create(&ph, &attr, threadfunc, (char *)(URL)); in pthread_create_0500()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/ |
H A D | 13-1.c | 10 * Test that if O_CREAT is set and attr != NULL, then mq_maxmsg and 11 * mq_msgsize are as defined in attr. 31 struct mq_attr attr; in main() local 36 attr.mq_maxmsg = MAXMSG; in main() 37 attr.mq_msgsize = MSGSIZE; in main() 38 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, &attr); in main() 53 if ((attrget.mq_maxmsg != attr.mq_maxmsg) || in main() 54 (attrget.mq_msgsize != attr.mq_msgsize)) { in main() 55 printf("sent: mq_maxmsg %ld; received %ld\n", attr.mq_maxmsg, in main() 57 printf("sent: mq_msgsize %ld; received %ld\n", attr in main() [all...] |
/third_party/python/Lib/test/test_importlib/frozen/ |
H A D | test_loader.py | 74 for attr, value in check.items(): 75 self.assertEqual(getattr(module, attr), value) 84 for attr, value in check.items(): 85 attr_value = getattr(module, attr) 87 'for {name}.{attr}, {given!r} != {expected!r}'.format( 88 name=name, attr=attr, given=attr_value, 98 for attr, value in check.items(): 99 attr_value = getattr(module, attr) 101 'for {name}.{attr}, {give [all...] |
/third_party/mesa3d/src/egl/main/ |
H A D | eglconfig.c | 142 EGLint attr; member 276 EGLint i, attr, val; in _eglValidateConfig() local 283 attr = _eglValidationTable[i].attr; in _eglValidateConfig() 284 val = _eglGetConfigKey(conf, attr); in _eglValidateConfig() 288 switch (attr) { in _eglValidateConfig() 310 switch (attr) { in _eglValidateConfig() 335 switch (attr) { in _eglValidateConfig() 382 "attribute 0x%04x has an invalid value 0x%x", attr, val); in _eglValidateConfig() 448 EGLint attr, va in _eglMatchConfig() local 500 _eglIsConfigAttribValid(_EGLConfig *conf, EGLint attr) _eglIsConfigAttribValid() argument 527 EGLint attr, val, i; _eglParseConfigAttribList() local [all...] |
H A D | eglimage.c | 39 EGLint attr, EGLint val) in _eglParseKHRImageAttribs() 41 switch (attr) { in _eglParseKHRImageAttribs() 76 EGLint attr, EGLint val) in _eglParseMESADrmImageAttribs() 81 switch (attr) { in _eglParseMESADrmImageAttribs() 106 EGLint attr, EGLint val) in _eglParseWLBindWaylandDisplayAttribs() 111 switch (attr) { in _eglParseWLBindWaylandDisplayAttribs() 124 EGLint attr, EGLint val) in _eglParseEXTImageDmaBufImportAttribs() 129 switch (attr) { in _eglParseEXTImageDmaBufImportAttribs() 217 EGLint attr, EGLint val) in _eglParseEXTImageDmaBufImportModifiersAttribs() 222 switch (attr) { in _eglParseEXTImageDmaBufImportModifiersAttribs() 38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseKHRImageAttribs() argument 75 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseMESADrmImageAttribs() argument 105 _eglParseWLBindWaylandDisplayAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseWLBindWaylandDisplayAttribs() argument 123 _eglParseEXTImageDmaBufImportAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseEXTImageDmaBufImportAttribs() argument 215 _eglParseEXTImageDmaBufImportModifiersAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp, EGLint attr, EGLint val) _eglParseEXTImageDmaBufImportModifiersAttribs() argument 292 EGLint attr = attrib_list[i++]; _eglParseImageAttribList() local [all...] |
/third_party/libuv/src/unix/ |
H A D | thread.c | 134 pthread_attr_t* attr; in uv_thread_create_ex() local 149 attr = NULL; in uv_thread_create_ex() 162 attr = &attr_storage; in uv_thread_create_ex() 164 if (pthread_attr_init(attr)) in uv_thread_create_ex() 167 if (pthread_attr_setstacksize(attr, stack_size)) in uv_thread_create_ex() 172 err = pthread_create(tid, attr, f.out, arg); in uv_thread_create_ex() 174 if (attr != NULL) in uv_thread_create_ex() 175 pthread_attr_destroy(attr); in uv_thread_create_ex() 299 pthread_mutexattr_t attr; in uv_mutex_init() 302 if (pthread_mutexattr_init(&attr)) in uv_mutex_init() 319 pthread_mutexattr_t attr; uv_mutex_init_recursive() local 718 pthread_condattr_t attr; uv_cond_init() local [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | thread.c | 241 pthread_attr_t* attr; in uv_thread_create_ex() local 256 attr = NULL; in uv_thread_create_ex() 269 attr = &attr_storage; in uv_thread_create_ex() 271 if (pthread_attr_init(attr)) in uv_thread_create_ex() 274 if (pthread_attr_setstacksize(attr, stack_size)) in uv_thread_create_ex() 279 err = pthread_create(tid, attr, f.out, arg); in uv_thread_create_ex() 281 if (attr != NULL) in uv_thread_create_ex() 282 pthread_attr_destroy(attr); in uv_thread_create_ex() 306 pthread_mutexattr_t attr; in uv_mutex_init() 309 if (pthread_mutexattr_init(&attr)) in uv_mutex_init() 326 pthread_mutexattr_t attr; uv_mutex_init_recursive() local 725 pthread_condattr_t attr; uv_cond_init() local [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | test_policy.py | 68 for attr, value in expected.items(): 69 with self.subTest(policy=policy, attr=attr): 70 self.assertEqual(getattr(policy, attr), value, 76 for attr in dir(policy): 77 with self.subTest(policy=policy, attr=attr): 78 if (attr.startswith('_') or 79 isinstance(getattr(email.policy.EmailPolicy, attr), 83 self.assertIn(attr, expecte [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server_aka.c | 874 struct eap_sim_attrs *attr) in eap_aka_process_identity() 880 if (attr->mac || attr->iv || attr->encr_data) { in eap_aka_process_identity() 892 if (!attr->identity || attr->identity_len == 0) { in eap_aka_process_identity() 900 new_identity = os_malloc(attr->identity_len); in eap_aka_process_identity() 908 os_memcpy(sm->identity, attr->identity, attr->identity_len); in eap_aka_process_identity() 909 sm->identity_len = attr in eap_aka_process_identity() 871 eap_aka_process_identity(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_identity() argument 931 eap_aka_process_challenge(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_challenge() argument 1035 eap_aka_process_sync_failure(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_sync_failure() argument 1068 eap_aka_process_reauth(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_reauth() argument 1162 eap_aka_process_client_error(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_client_error() argument 1176 eap_aka_process_authentication_reject( struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_authentication_reject() argument 1185 eap_aka_process_notification(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_notification() argument 1205 struct eap_sim_attrs attr; eap_aka_process() local [all...] |
H A D | eap_server_sim.c | 433 struct eap_sim_attrs *attr) in eap_sim_process_start() 454 if (!attr->identity || attr->identity_len == 0) { in eap_sim_process_start() 460 new_identity = os_malloc(attr->identity_len); in eap_sim_process_start() 465 os_memcpy(sm->identity, attr->identity, attr->identity_len); in eap_sim_process_start() 466 sm->identity_len = attr->identity_len; in eap_sim_process_start() 525 if (attr->nonce_mt == NULL || attr->selected_version < 0) { in eap_sim_process_start() 531 if (!eap_sim_supported_ver(data, attr in eap_sim_process_start() 430 eap_sim_process_start(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_start() argument 584 eap_sim_process_challenge(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_challenge() argument 623 eap_sim_process_reauth(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_reauth() argument 703 eap_sim_process_client_error(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_client_error() argument 717 eap_sim_process_notification(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_notification() argument 737 struct eap_sim_attrs attr; eap_sim_process() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server_aka.c | 874 struct eap_sim_attrs *attr) in eap_aka_process_identity() 880 if (attr->mac || attr->iv || attr->encr_data) { in eap_aka_process_identity() 892 if (!attr->identity || attr->identity_len == 0) { in eap_aka_process_identity() 900 new_identity = os_malloc(attr->identity_len); in eap_aka_process_identity() 908 os_memcpy(sm->identity, attr->identity, attr->identity_len); in eap_aka_process_identity() 909 sm->identity_len = attr in eap_aka_process_identity() 871 eap_aka_process_identity(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_identity() argument 931 eap_aka_process_challenge(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_challenge() argument 1036 eap_aka_process_sync_failure(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_sync_failure() argument 1069 eap_aka_process_reauth(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_reauth() argument 1164 eap_aka_process_client_error(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_client_error() argument 1178 eap_aka_process_authentication_reject( struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_authentication_reject() argument 1187 eap_aka_process_notification(struct eap_sm *sm, struct eap_aka_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_aka_process_notification() argument 1207 struct eap_sim_attrs attr; eap_aka_process() local [all...] |
H A D | eap_server_sim.c | 433 struct eap_sim_attrs *attr) in eap_sim_process_start() 454 if (!attr->identity || attr->identity_len == 0) { in eap_sim_process_start() 460 new_identity = os_malloc(attr->identity_len); in eap_sim_process_start() 465 os_memcpy(sm->identity, attr->identity, attr->identity_len); in eap_sim_process_start() 466 sm->identity_len = attr->identity_len; in eap_sim_process_start() 525 if (attr->nonce_mt == NULL || attr->selected_version < 0) { in eap_sim_process_start() 531 if (!eap_sim_supported_ver(data, attr in eap_sim_process_start() 430 eap_sim_process_start(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_start() argument 584 eap_sim_process_challenge(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_challenge() argument 624 eap_sim_process_reauth(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_reauth() argument 705 eap_sim_process_client_error(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_client_error() argument 719 eap_sim_process_notification(struct eap_sm *sm, struct eap_sim_data *data, struct wpabuf *respData, struct eap_sim_attrs *attr) eap_sim_process_notification() argument 739 struct eap_sim_attrs attr; eap_sim_process() local [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/ |
H A D | common.h | 80 static int init_attr(pthread_attr_t *attr, struct params *p) in init_attr() argument 87 rc = pthread_attr_init(attr); in init_attr() 92 rc = pthread_attr_setschedpolicy(attr, p->policy); in init_attr() 97 rc = pthread_attr_setinheritsched(attr, PTHREAD_EXPLICIT_SCHED); in init_attr() 104 rc = pthread_attr_setschedparam(attr, &sp); in init_attr() 112 pthread_attr_destroy(attr); in init_attr() 121 pthread_attr_t attr; in create_test_thread() local 125 rc = init_attr(&attr, p); in create_test_thread() 129 rc = pthread_create(&thread, &attr, thread_func, p); in create_test_thread() 140 pthread_attr_destroy(&attr); in create_test_thread() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/ |
H A D | 2-1.c | 11 * 1. Initialize pthread_attr_t object (attr) 12 * 2. set the stackaddr and stacksize to attr 13 * 3. create a thread with the attr 40 pthread_attr_t attr; in thread_func() local 45 if ((rc = pthread_getattr_np(pthread_self(), &attr)) != 0) { in thread_func() 49 if ((rc = pthread_attr_getstack(&attr, &saddr, &ssize)) != 0) { in thread_func() 65 pthread_attr_t attr; in main() local 70 /* Initialize attr */ in main() 71 rc = pthread_attr_init(&attr); in main() 78 rc = pthread_attr_getstack(&attr, in main() [all...] |
/third_party/pulseaudio/man/ |
H A D | xmltoman | 86 my %attr = @_; 93 print ".TH " . $attr{name} . " " . $attr{section} . " User Manuals\n"; 95 print $attr{name} . " \\- " . $attr{desc} . "\n"; 125 print ".SH ".uc($attr{name})."\n"; 126 $section = $attr{name}; 149 out($attr{name} ."(" . $attr{section} . ")"); 154 out($attr{hre [all...] |
/third_party/rust/crates/proc-macro-error/proc-macro-error-attr/src/ |
H A D | lib.rs | 37 pub fn proc_macro_error(attr: TokenStream, input: TokenStream) -> TokenStream { in proc_macro_error() 38 match impl_proc_macro_error(attr.into(), input.clone().into()) { in proc_macro_error() 49 fn impl_proc_macro_error(attr: TokenStream2, input: TokenStream2) -> Result<TokenStream> { in impl_proc_macro_error() 51 let mut settings = parse_settings(attr)?; in impl_proc_macro_error() 112 .any(|attr| attr.path_is_ident("proc_macro_hack")) in detect_proc_macro_hack() 116 attrs.iter().any(|attr| { in is_proc_macro() 117 attr.path_is_ident("proc_macro") in is_proc_macro() 118 || attr.path_is_ident("proc_macro_derive") in is_proc_macro() 119 || attr in is_proc_macro() [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/ |
H A D | events.js | 71 return { attr: undefined }; 76 attr: isSet(object.ceBoolean) 95 message.attr?.$case === "ceBoolean" && (obj.ceBoolean = message.attr?.ceBoolean); 96 message.attr?.$case === "ceInteger" && (obj.ceInteger = Math.round(message.attr?.ceInteger)); 97 message.attr?.$case === "ceString" && (obj.ceString = message.attr?.ceString); 98 message.attr?.$case === "ceBytes" && 99 (obj.ceBytes = message.attr [all...] |
/third_party/elfutils/libdw/ |
H A D | libdw.h | 495 extern int dwarf_hasform (Dwarf_Attribute *attr, unsigned int search_form); 498 extern unsigned int dwarf_whatattr (Dwarf_Attribute *attr); 501 extern unsigned int dwarf_whatform (Dwarf_Attribute *attr); 508 extern int dwarf_formudata (Dwarf_Attribute *attr, Dwarf_Word *return_uval) 512 extern int dwarf_formsdata (Dwarf_Attribute *attr, Dwarf_Sword *return_uval) 516 extern int dwarf_formaddr (Dwarf_Attribute *attr, Dwarf_Addr *return_addr) 521 extern int dwarf_formref (Dwarf_Attribute *attr, Dwarf_Off *return_offset) 525 extern Dwarf_Die *dwarf_formref_die (Dwarf_Attribute *attr, Dwarf_Die *die_mem) 529 extern int dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block) 533 extern int dwarf_formflag (Dwarf_Attribute *attr, boo 1103 dwarf_whatattr(Dwarf_Attribute *attr) dwarf_whatattr() argument 1110 dwarf_whatform(Dwarf_Attribute *attr) dwarf_whatform() argument [all...] |
/third_party/curl/src/ |
H A D | tool_xattr.c | 33 const char *attr; /* name of the xattr */ member 84 const char *attr, /* name of the xattr */ in xattr() 92 printf("%s => %s\n", attr, value); in xattr() 97 err = fsetxattr(fd, attr, value, strlen(value), 0, 0); in xattr() 99 err = fsetxattr(fd, attr, value, strlen(value), 0); in xattr() 103 attr, value, strlen(value)); in xattr() 122 while(!err && mappings[i].attr) { in fwrite_xattr() 126 err = xattr(fd, mappings[i].attr, value); in fwrite_xattr() 83 xattr(int fd, const char *attr, const char *value) xattr() argument
|
/third_party/python/Python/ |
H A D | thread_pthread_stubs.h | 6 const pthread_mutexattr_t *restrict attr) in pthread_mutex_init() 38 const pthread_condattr_t *restrict attr) in pthread_cond_init() 70 pthread_condattr_init(pthread_condattr_t *attr) in pthread_condattr_init() argument 76 pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id) in pthread_condattr_setclock() argument 84 const pthread_attr_t *restrict attr, in pthread_create() 109 pthread_attr_init(pthread_attr_t *attr) in pthread_attr_init() argument 116 pthread_attr_t *attr, size_t stacksize) in pthread_attr_setstacksize() 122 pthread_attr_destroy(pthread_attr_t *attr) in pthread_attr_destroy() argument 5 pthread_mutex_init(pthread_mutex_t *restrict mutex, const pthread_mutexattr_t *restrict attr) pthread_mutex_init() argument 37 pthread_cond_init(pthread_cond_t *restrict cond, const pthread_condattr_t *restrict attr) pthread_cond_init() argument 83 pthread_create(pthread_t *restrict thread, const pthread_attr_t *restrict attr, void *(*start_routine)(void *), void *restrict arg) pthread_create() argument 115 pthread_attr_setstacksize( pthread_attr_t *attr, size_t stacksize) pthread_attr_setstacksize() argument
|
/third_party/python/Include/cpython/ |
H A D | pthread_stubs.h | 44 const pthread_mutexattr_t *restrict attr); 52 const pthread_condattr_t *restrict attr); 60 PyAPI_FUNC(int) pthread_condattr_init(pthread_condattr_t *attr); variable 62 pthread_condattr_t *attr, clockid_t clock_id); 66 const pthread_attr_t *restrict attr, 72 PyAPI_FUNC(int) pthread_attr_init(pthread_attr_t *attr); variable 73 PyAPI_FUNC(int) pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize); 74 PyAPI_FUNC(int) pthread_attr_destroy(pthread_attr_t *attr); variable
|
/third_party/cups-filters/filter/ |
H A D | rastertopclx.c | 125 ppd_attr_t *attr; /* Attribute from PPD file */ in StartPage() local 454 if (ppd && ((attr = ppdFindAttr(ppd, "cupsInitialNulls", NULL)) != NULL)) in StartPage() 455 for (i = atoi(attr->value); i > 0; i --) in StartPage() 468 if (ppd && ((attr = ppdFindAttr(ppd, "cupsPJL", "StartJob")) != NULL)) in StartPage() 469 pjl_write(attr->value, NULL, job_id, user, title, num_options, in StartPage() 473 if (ppd && ((attr = ppdFindAttr(ppd, "cupsPJL", spec)) != NULL)) in StartPage() 474 printf("@PJL SET RENDERMODE=%s\r\n", attr->value); in StartPage() 477 if (ppd && ((attr = ppdFindAttr(ppd, "cupsPJL", spec)) != NULL)) in StartPage() 478 printf("@PJL SET COLORSPACE=%s\r\n", attr->value); in StartPage() 483 if (ppd && ((attr in StartPage() 911 ppd_attr_t *attr; /* Attribute from PPD file */ Shutdown() local [all...] |