Searched defs:string (Results 101 - 125 of 151) sorted by relevance

1234567

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdmac.c51 #include <string.h>
212 _MD_PutEnv(const char *string) argument
219 variableCopy = strdup(string);
401 // PStrFromCStr converts the source C string to a destination
402 // pascal string as it copies. The dest string will
404 // If the C String pointer is NULL, the pascal string's length is set to zero
454 // Allocates a cString and copies a Pascal string into it.
508 // PStrFromCStr converts the source C string to a destination
509 // pascal string a
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/untgz/
H A Duntgz.c11 #include <string.h>
188 /* convert time_t to string */
290 int ExprMatch (char *string,char *expr) argument
298 if (*string != '\\' && *string != '/')
300 string ++; expr++;
306 while (*++string != *expr)
307 if (*string == 0)
313 if (*string != *expr)
317 string
[all...]
/vbox/src/VBox/ValidationKit/tests/additions/
H A DtdAddGuestCtrl.py47 import string # pylint: disable=W0402 namespace
1684 # Use an invalid format string.
2138 "".join(random.choice(string.ascii_lowercase) for i in range(32))) ),
2142 "".join(random.choice(string.ascii_lowercase) for i in range(128))) ),
2147 "".join(random.choice(string.ascii_lowercase) for i in range(255))) ),
2151 "".join(random.choice(string.ascii_lowercase) for i in range(1024))) ),
2289 # sTemplate = "XXX-".join(random.choice(string.ascii_lowercase) for i in range(32)),
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMisc.py19 import string namespace
34 ## Regular expression used to find out place holders in string template
69 ## Convert GUID string in xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx style to C structure style
71 # @param Guid The GUID string
73 # @retval string The GUID string in C structure style
90 # @retval string The GUID value in xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx format
97 #EdkLogger.error(None, None, "Invalid GUID value string %s" % GuidValue)
120 ## Convert GUID string in C structure style to xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
124 # @retval string Th
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dsnmp.h66 AsnOctetString string; member in union:__anon13820::__anon13821
H A Dxcmc.h100 char string[1]; member in struct:__anon14626
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_program.c59 if (prog->string)
60 crFree((void *) prog->string);
429 if (prog->string)
430 crFree((void *) prog->string);
432 prog->string = progCopy;
442 GLsizei len, const GLvoid *string)
485 if (crStrncmp(string,"!!ARBvp1.0", 10) != 0
486 && crStrncmp(string,"!!ARBfp1.0", 10) != 0) {
490 crMemcpy(progCopy, string, len);
491 if (prog->string)
441 crStateProgramStringARB(GLenum target, GLenum format, GLsizei len, const GLvoid *string) argument
582 crStateGetProgramStringARB(GLenum target, GLenum pname, GLvoid *string) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/
H A Defi_snp.c22 #include <string.h>
845 * Generate EFI SNP string
850 * @ret wlen Length of string (in wide characters)
902 * Generate EFI SNP string package
907 * @ret len Length of string package
915 EFI_HII_SIBT_STRING_UCS2_BLOCK *string; local
930 string = buf;
931 if ( remaining >= ( ( ssize_t ) sizeof ( string->Header ) ) )
932 string->Header.BlockType = EFI_HII_SIBT_STRING_UCS2;
933 buf += offsetof ( typeof ( *string ), StringTex
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DPs.h167 char *string; member in struct:__anon4471
175 unsigned short *string; member in struct:__anon4472
485 int count, char *string);
487 int count, unsigned short *string);
489 int count, char *string);
491 int count, unsigned short *string);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DPs.h167 char *string; member in struct:__anon4030
175 unsigned short *string; member in struct:__anon4031
485 int count, char *string);
487 int count, unsigned short *string);
489 int count, char *string);
491 int count, unsigned short *string);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dsnmp.h70 AsnOctetString string; member in union:__anon1183::__anon1184
H A Dxcmc.h100 char string[1]; member in struct:__anon1931
/vbox/src/libs/libxml2-2.6.31/
H A Dtriostr.c24 #include <string.h>
119 Create new string.
121 @param size Size of new string.
122 @return Pointer to string, or NULL if allocation failed.
134 Destroy string.
136 @param string String to be freed.
140 TRIO_ARGS1((string),
141 char *string)
143 if (string)
145 TRIO_FREE(string);
139 trio_destroy(string), char *string argument
157 trio_length(string), TRIO_CONST char *string argument
240 trio_contains(string, substring), TRIO_CONST char *string, TRIO_CONST char *substring argument
624 trio_hash(string, type), TRIO_CONST char *string, int type argument
661 trio_index(string, character), TRIO_CONST char *string, int character argument
682 trio_index_last(string, character), TRIO_CONST char *string, int character argument
728 trio_match(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
781 trio_match_case(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
861 trio_substring(string, substring), TRIO_CONST char *string, TRIO_CONST char *substring argument
885 trio_substring_max(string, max, substring), TRIO_CONST char *string, size_t max, TRIO_CONST char *substring argument
926 trio_tokenize(string, delimiters), char *string, TRIO_CONST char *delimiters argument
1141 trio_to_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
1190 trio_to_unsigned_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
[all...]
H A Dxmlsave.c12 #include <string.h>
125 msg = "string is not in UTF-8\n";
597 * @encoding: an optional encoding string
1117 * @encoding: an optional encoding string
1151 * @encoding: an optional encoding string
1739 * @string: the text content
1745 xmlAttrPtr attr, const xmlChar * string)
1749 if (string == NULL)
1751 base = cur = (xmlChar *) string;
1977 * @encoding: an optional encoding string
1744 xmlAttrSerializeTxtContent(xmlBufferPtr buf, xmlDocPtr doc, xmlAttrPtr attr, const xmlChar * string) argument
[all...]
H A Dxpointer.c28 #include <string.h>
973 * string and if the scheme is 'xpointer' it will call the XPath interpreter.
1332 xmlXPathRegisterFunc(ret, (xmlChar *)"string-range",
1685 * string value in case of text/PI/Comments nodes
1869 * string-value of x.
2161 * length of the string-value of x, and otherwise is the number of
2422 * @string: the string to search
2428 * Check whether the document contains @string at the position
2437 xmlXPtrMatchString(const xmlChar *string, xmlNodePt argument
2522 xmlXPtrSearchString(const xmlChar *string, xmlNodePtr *start, int *startindex, xmlNodePtr *end, int *endindex) argument
2761 xmlXPathObjectPtr string; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprnetdb.c40 #include <string.h>
1551 * or 0 if the input is not a valid IPv6 address string.
1552 * (Same as inet_pton(AF_INET6, string, addr).)
1554 static int StringToV6Addr(const char *string, PRIPv6Addr *addr) argument
1556 const unsigned char *s = (const unsigned char *)string;
1666 * the text string if the conversion succeeds, and NULL otherwise.
1706 /* Now start converting to a string */
1770 PR_IMPLEMENT(PRStatus) PR_StringToNetAddr(const char *string, PRNetAddr *addr)
1776 rv = inet_pton(AF_INET6, string, &addr->ipv6.ip);
1786 rv = inet_pton(AF_INET, string,
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsVoidArray.cpp753 nsString* string = NS_STATIC_CAST(nsString*, nsVoidArray::ElementAt(aIndex)); local
754 if (nsnull != string)
756 aString.Assign(*string);
779 nsString* string = NS_STATIC_CAST(nsString*, *ap); local
780 if (string->Equals(aPossibleString))
793 nsString* string = new nsString(aString); local
794 if (nsVoidArray::InsertElementAt(string, aIndex))
798 delete string;
806 nsString* string = NS_STATIC_CAST(nsString*, nsVoidArray::ElementAt(aIndex)); local
807 if (nsnull != string)
828 nsString* string = StringAt(aIndex); local
844 nsString* string = NS_STATIC_CAST(nsString*, mImpl->mArray[index]); local
911 ParseString(const char* string, const char* delimiter) argument
958 nsCString* string = NS_STATIC_CAST(nsCString*, nsVoidArray::ElementAt(aIndex)); local
984 nsCString* string = NS_STATIC_CAST(nsCString*, *ap); local
1004 nsCString* string = NS_STATIC_CAST(nsCString*, *ap); local
1018 nsCString* string = new nsCString(aCString); local
1030 nsCString* string = NS_STATIC_CAST(nsCString*, nsVoidArray::ElementAt(aIndex)); local
1063 nsCString* string = CStringAt(aIndex); local
1079 nsCString* string = NS_STATIC_CAST(nsCString*, mImpl->mArray[index]); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_a.c81 void xxprintf(char *format,char *string) { /* MR1 */ argument
83 void xxprintf(format,string) /* MR1 */
85 char *string; /* MR1 */
90 fprintf(class_stream,format,string); /* MR1 */
92 fprintf(OUT,format,string); /* MR1 */
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp483 SHFLSTRING string; member in struct:TESTSHFLSTRING
492 pDest->string.u16Length = (uint16_t)(strlen(pcszSource) * sizeof(RTUTF16));
493 pDest->string.u16Size = pDest->string.u16Length + sizeof(RTUTF16);
494 for (unsigned i = 0; i <= pDest->string.u16Length; ++i)
495 pDest->string.String.ucs2[i] = (uint16_t)pcszSource[i];
519 + FolderName.string.u16Size);
521 + Mapping.string.u16Size);
527 + Mapping.string.u16Size);
556 + FolderName.string
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_pointers.c754 int crdlm_pointers_ProgramStringARB(struct instanceProgramStringARB *instance, GLenum target, GLenum format, GLsizei len, const GLvoid * string) argument
757 if (instance && size > 0) crMemcpy(instance->string, string, size);
936 int crdlm_pointers_ShaderSource(struct instanceShaderSource *instance, GLuint shader, GLsizei count, const char ** string, const GLint * length) argument
957 if (string && *string && cbStrings)
958 crMemcpy(instance->string, *string, cbStrings);
966 int crdlm_pointers_StringMarkerGREMEDY(struct instanceStringMarkerGREMEDY *instance, GLsizei len, const GLvoid* string) argument
968 /* @param len assumed to indicate string lengh
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_parser.c83 * In this state, the node is of type D string. The string type is really
124 char yyintsuffix[4]; /* int token suffix string [uU][lL] */
187 case DT_TOK_STRING: return ("<string>");
207 break; /* empty string or single token remaining */
221 * Copy the original string up to the start of this
414 (void) snprintf(buf, len, "string constant \"%s\"",
955 return (1); /* promote char pointer to string */
960 return (1); /* promote char array to string */
974 return (0); /* string ar
1246 dt_node_string(char *string) argument
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdp.c214 /* Output a string in Unicode */
216 rdp_out_unistr(STREAM s, char *string, int len) argument
218 if (string == NULL || len == 0)
222 size_t ibl = strlen(string), obl = len + 2;
224 char *pin = string, *pout = (char *) s->p;
239 rdp_out_unistr(s, string, len);
250 rdp_out_unistr(s, string, len);
253 pin = string;
264 rdp_out_unistr(s, string, len);
280 s->p[i++] = string[
293 rdp_in_unistr(STREAM s, int in_len, char **string, uint32 * str_size) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/public/
H A Dxpt_struct.h173 * 1) Add the current version number string (before your change) to the
321 * This is our special string struct with a length value associated with it,
426 * int64, uint64, wchar_t, char, string
431 * 16-bit signed integer. For a ConstDescriptor type of string, the value
433 * String record containing the constant string.
450 XPTString *string; member in union:XPTConstValue
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Modules/
H A D_sre.c552 string, and backtrack from there */
808 /* check if string matches the given pattern. returns <0 for
875 /* match literal string */
1048 string. check if the rest of the pattern matches,
1624 /* check if given string is a literal template (i.e. no escapes) */
1678 getstring(PyObject* string, Py_ssize_t* p_length, int* p_charsize) argument
1682 is not a string (or not compatible) */
1690 if (PyUnicode_Check(string)) {
1692 ptr = (void*) PyUnicode_AS_DATA(string);
1693 /* bytes = PyUnicode_GET_DATA_SIZE(string); */
1744 state_init(SRE_STATE* state, PatternObject* pattern, PyObject* string, Py_ssize_t start, Py_ssize_t end) argument
1811 state_getslice(SRE_STATE* state, Py_ssize_t index, PyObject* string, int empty) argument
1875 PyObject* string; local
1914 PyObject* string; local
1994 join_list(PyObject* list, PyObject* string) argument
2049 PyObject* string; local
2179 PyObject* string; local
2282 pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string, Py_ssize_t count, Py_ssize_t subn) argument
2471 PyObject* string; local
2485 PyObject* string; local
3841 PyObject* string; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
H A D_sre.c561 string, and backtrack from there */
817 /* check if string matches the given pattern. returns <0 for
884 /* match literal string */
1057 string. check if the rest of the pattern matches,
1633 /* check if given string is a literal template (i.e. no escapes) */
1687 getstring(PyObject* string, Py_ssize_t* p_length, int* p_charsize) argument
1691 is not a string (or not compatible) */
1699 if (PyUnicode_Check(string)) {
1701 ptr = (void*) PyUnicode_AS_DATA(string);
1702 /* bytes = PyUnicode_GET_DATA_SIZE(string); */
1753 state_init(SRE_STATE* state, PatternObject* pattern, PyObject* string, Py_ssize_t start, Py_ssize_t end) argument
1820 state_getslice(SRE_STATE* state, Py_ssize_t index, PyObject* string, int empty) argument
1884 PyObject* string; local
1923 PyObject* string; local
2003 join_list(PyObject* list, PyObject* string) argument
2058 PyObject* string; local
2188 PyObject* string; local
2291 pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string, Py_ssize_t count, Py_ssize_t subn) argument
2480 PyObject* string; local
2494 PyObject* string; local
3848 PyObject* string; local
[all...]

Completed in 219 milliseconds

1234567