Searched defs:string (Results 1 - 8 of 8) sorted by relevance

/system/core/sh/
H A Dmystring.c48 * scopy(from, to) Copy a string.
50 * number(s) Convert a string of digits to an integer.
51 * is_number(s) Return true if s is a string of digits.
61 char nullstr[1]; /* zero length string */
73 * scopyn - copy a string from "from" to "to", truncating the string
91 * prefix -- see if pfx is a prefix of string.
95 prefix(const char *pfx, const char *string) argument
98 if (*pfx++ != *string++)
106 * Convert a string o
[all...]
H A Dinput.c49 #include <string.h>
75 struct strpush *prev; /* preceding string on stack */
91 int fd; /* file descriptor (or -1 if string) */
278 * 1) If a string was pushed back on the input, pop it;
280 * from a string so we can't refill the buffer, return EOF.
382 * Push a string back onto the input at this current parsefile level.
477 * Like setinputfile, but takes input from a string.
481 setinputstring(char *string, int push) argument
486 parsenextc = string;
487 parselleft = parsenleft = strlen(string);
[all...]
H A Dexpand.c76 * Structure specifying which parts of the string should be searched
88 char *expdest; /* output of current string */
344 * evaluate, place result in (backed up) result, adjust string position.
601 * input string.
716 * Terminate the string and start recording the pattern
819 * Add the value of a specialized variable to the stack string.
909 * string for IFS characters.
939 * Break the argument string into pieces based upon IFS and add the
940 * strings to the argument list. The regions of the string to be
944 ifsbreakup(char *string, struc argument
1331 patmatch(char *pattern, char *string, int squoted) argument
1343 pmatch(char *pattern, char *string, int squoted) argument
[all...]
/system/core/debuggerd/
H A Ddebuggerd.c58 write_string(const char* file, const char* string) argument
64 len = strlen(string);
67 amt = write(fd, string, len);
/system/core/libpixelflinger/codeflinger/
H A DARMAssemblerProxy.cpp64 void ARMAssemblerProxy::comment(const char* string) { argument
65 mTarget->comment(string);
H A DARMAssembler.cpp103 void ARMAssembler::comment(const char* string) argument
105 mComments.add(mPC, string);
/system/core/libusbhost/
H A Dusbhost.c35 #include <string.h>
340 char string[256]; local
346 string[0] = 0;
364 // skip first word, and copy the rest to the string, changing shorts to bytes.
367 string[i - 1] = buffer[i];
368 string[i - 1] = 0;
369 return strdup(string);
/system/core/libnetutils/
H A Difc_utils.c20 #include <string.h>
48 #include <string.h>
96 int string_to_ip(const char *string, struct sockaddr_storage *ss) { argument
109 ret = getaddrinfo(string, NULL, &hints, &ai);
275 // Convert string representation to sockaddr_storage.

Completed in 4048 milliseconds