Searched defs:attr (Results 1 - 25 of 75) sorted by relevance

123

/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dattribs.py16 <!ATTLIST test abc:attr CDATA #FIXED "def" >
21 attr = elem.hasNsProp('attr', 'http://abc.org') variable
22 if attr == None or attr.serialize()[:-1] != """<!ATTLIST test abc:attr CDATA #FIXED "def">""":
23 print "Failed to find defaulted attribute abc:attr"
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16proc.c49 const PRProcessAttr *attr)
45 _PR_CreateWindowsProcess( const char *path, char *const *argv, char *const *envp, const PRProcessAttr *attr) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dparent.c54 PRProcessAttr *attr; member in struct:Child
105 child->attr = PR_NewProcessAttr();
107 child->attr, PR_StandardOutput,
110 child->attr, PR_StandardError,
115 child->name, child->argv, NULL, child->attr);
118 PR_DestroyProcessAttr(child->attr);
H A Dpipeping.c75 PRProcessAttr *attr; local
113 attr = PR_NewProcessAttr();
114 if (attr == NULL) {
119 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardInput, out_pipe[0]);
120 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardOutput, in_pipe[1]);
122 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr);
127 PR_DestroyProcessAttr(attr);
H A Dpipeping2.c70 PRProcessAttr *attr; local
108 attr = PR_NewProcessAttr();
109 if (attr == NULL) {
114 status = PR_ProcessAttrSetInheritableFD(attr, out_pipe[0], "PIPE_READ");
119 status = PR_ProcessAttrSetInheritableFD(attr, in_pipe[1], "PIPE_WRITE");
125 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr);
130 PR_DestroyProcessAttr(attr);
H A Dsockping.c69 PRProcessAttr *attr; local
94 attr = PR_NewProcessAttr();
95 if (attr == NULL) {
100 status = PR_ProcessAttrSetInheritableFD(attr, sock[1], "SOCKET");
106 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr);
111 PR_DestroyProcessAttr(attr);
H A Dattach.c168 pthread_attr_t attr; local
234 rv = _PT_PTHREAD_ATTR_INIT(&attr);
242 rv = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
249 rv = _PT_PTHREAD_CREATE(&threadID, attr, threadStartFunc, NULL);
260 rv = _PT_PTHREAD_ATTR_DESTROY(&attr);
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprproces.h70 NSPR_API(void) PR_ResetProcessAttr(PRProcessAttr *attr); variable
72 NSPR_API(void) PR_DestroyProcessAttr(PRProcessAttr *attr); variable
75 PRProcessAttr *attr,
84 PRProcessAttr *attr,
90 PRProcessAttr *attr,
95 PRProcessAttr *attr,
117 const PRProcessAttr *attr);
123 const PRProcessAttr *attr);
/vbox/src/VBox/Additions/os2/VBoxSF/
H A DVBoxSFFind.cpp43 FS32_FINDFIRST(PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszName, USHORT iCurDirEnd, USHORT attr, argument
78 FS32_FINDNOTIFYFIRST(PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszName, USHORT iCurDirEnd, USHORT attr, argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbproc.c46 char *const *envp, const PRProcessAttr *attr)
61 if (attr && attr->fdInheritBuffer) {
76 newEnvp[idx++] = attr->fdInheritBuffer;
98 if (attr) {
102 if (attr->stdinFd
103 && attr->stdinFd->secret->md.osfd != 0) {
104 in_osfd = attr->stdinFd->secret->md.osfd;
113 if (attr->stdoutFd
114 && attr
45 _MD_create_process(const char *path, char *const *argv, char *const *envp, const PRProcessAttr *attr) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Drhapsody.c115 int pthread_condattr_init(pthread_condattr_t *attr) argument
H A Dpthreads_user.c375 pthread_attr_t attr; local
394 pthread_attr_init(&attr); /* initialize attr with default attributes */
395 if (pthread_attr_setstacksize(&attr, (size_t) stackSize) != 0) {
398 pthread_attr_destroy(&attr);
405 rv = pthread_create(&thread->md.pthread, &attr, start, (void *)thread);
415 pthread_attr_destroy(&attr);
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/
H A Dxpidl_doc.c242 IDL_tree attr = state->tree; local
244 if (!verify_attribute_declaration(attr))
251 if (IDL_ATTR_DCL(attr).f_readonly)
256 if (!write_type(IDL_ATTR_DCL(attr).param_type_spec, state->file))
260 print_list(state->file, IDL_ATTR_DCL(attr).simple_declarations);
/vbox/src/VBox/Main/src-server/xpcom/
H A Dserver_module.cpp100 PRProcessAttr *attr = nsnull; local
113 attr = PR_NewProcessAttr();
114 if (!attr)
117 if (PR_ProcessAttrSetInheritableFD(attr, writable, VBOXSVC_STARTUP_PIPE_NAME) != PR_SUCCESS)
124 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardInput, devNull);
125 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardOutput, devNull);
126 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardError, devNull);
128 if (PR_CreateProcessDetached(VBoxSVCPath, args, nsnull, attr) != PR_SUCCESS)
156 if (attr)
157 PR_DestroyProcessAttr(attr);
[all...]
/vbox/src/VBox/Devices/Graphics/BIOS/tests/
H A Dtestbios.c101 char attr; local
104 for(attr=0;attr<16;attr++)
105 {printf("%02x ",attr);
106 regs->r_ax=0x0961+attr;
107 regs->r_bx=0x0100+attr;
/vbox/src/VBox/Devices/PC/BIOS/
H A Dinvop.c27 uint8_t attr; /* Segment attributes. */ member in struct:tag_ldall_desc
199 ldbuf->unused2[2] = (ldbuf->es_desc.attr << 8) | ldbuf->es_desc.base_hi;
205 ldbuf->unused1[2] = (ldbuf->ds_desc.attr << 8) | ldbuf->ds_desc.base_hi;
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_client.c26 static void crPackVertexAttrib(const CRVertexArrays *array, unsigned int attr, GLint index) argument
28 unsigned char *p = array->a[attr].p + index * array->a[attr].stride;
35 if (array->a[attr].buffer && array->a[attr].buffer->data)
37 Assert(((uintptr_t)p) < array->a[attr].buffer->size);
38 p = (unsigned char *)(array->a[attr].buffer->data) + (unsigned long)p;
48 switch (array->a[attr].type)
53 switch (array->a[attr].size)
56 if (array->a[attr]
308 unsigned int unit, attr; local
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_pragma.c77 dtrace_attribute_t attr, *a; local
88 if (dtrace_str2attr(dnp->dn_string, &attr) == -1) {
120 *a = attr;
132 idp->di_attr = attr;
141 attr, 0, &dt_idops_thaw, (void *)prname, dtp->dt_gen);
H A Ddt_decl.c265 dt_decl_attr(ushort_t attr) argument
271 ddp->dd_attr = attr;
275 if (attr == DT_DA_LONG && (ddp->dd_attr & DT_DA_LONG)) {
277 attr = DT_DA_LONGLONG;
280 ddp->dd_attr |= attr;
/vbox/src/libs/libxml2-2.6.31/
H A DHTMLtree.c99 xmlAttrPtr attr = cur->properties; local
105 while (attr != NULL) {
106 if ((attr->children != NULL) &&
107 (attr->children->type == XML_TEXT_NODE) &&
108 (attr->children->next == NULL)) {
109 value = attr->children->content;
110 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv"))
114 && (!xmlStrcasecmp(attr->name, BAD_CAST"content")))
119 attr = attr
242 xmlAttrPtr attr = cur->properties; local
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dstub.c502 XWindowAttributes attr; local
505 XGetWindowAttributes(dpy, pWindow->drawable, &attr);
508 bNoUpdate = attr.override_redirect;
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/vbo/
H A Dvbo_attrib_tmp.h207 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
208 ATTR1F( attr, x );
214 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
215 ATTR1FV( attr, v );
221 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
222 ATTR2F( attr, x, y );
228 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
229 ATTR2FV( attr, v );
236 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
237 ATTR3F( attr,
243 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
251 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
258 GLuint attr = (target & 0x7) + VBO_ATTRIB_TEX0; local
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dtypes.c225 libxml_xmlAttrPtrWrap(xmlAttrPtr attr) argument
230 printf("libxml_xmlAttrNodePtrWrap: attr = %p\n", attr);
232 if (attr == NULL) {
237 PyCObject_FromVoidPtrAndDesc((void *) attr, (char *) "xmlAttrPtr",
243 libxml_xmlAttributePtrWrap(xmlAttributePtr attr) argument
248 printf("libxml_xmlAttributePtrWrap: attr = %p\n", attr);
250 if (attr == NULL) {
255 PyCObject_FromVoidPtrAndDesc((void *) attr,
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacthr.c450 const PRProcessAttr *attr)
452 #pragma unused (path, argv, envp, attr)
446 _MD_CreateProcess( const char *path, char *const *argv, char *const *envp, const PRProcessAttr *attr) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2misc.c259 const PRProcessAttr *attr,
294 * If attr->fdInheritBuffer is not NULL, we need to insert
297 if (envp == NULL && attr && attr->fdInheritBuffer) {
311 if (attr && attr->fdInheritBuffer) {
318 if (attr && attr->fdInheritBuffer) {
319 newEnvp[idx++] = attr->fdInheritBuffer;
330 if (attr) {
255 _PR_CreateOS2ProcessEx( const char *path, char *const *argv, char *const *envp, const PRProcessAttr *attr, PRBool detached) argument
512 _PR_CreateOS2Process( const char *path, char *const *argv, char *const *envp, const PRProcessAttr *attr) argument
[all...]

Completed in 96 milliseconds

123