Lines Matching defs:string
1080 * adding the string "xxj31ZMTZzkVA" as the password in the user file.
2314 * string in wire format -- a sequence of length-prefixed strings -- indicating
2352 * them together into a single string, where each protocol name is prefixed
2353 * by its length. First, calculate how long that string will be. */
2356 const char *string = APR_ARRAY_IDX(protos, i, const char*);
2357 unsigned int length = strlen(string);
2363 length, string);
2378 /* Now we can build the string. Copy each protocol name string into the
2379 * larger string, prefixed by its length. */
2383 const char *string = APR_ARRAY_IDX(protos, i, const char*);
2384 apr_size_t length = strlen(string);
2389 memcpy(start, string, length * sizeof(unsigned char));