/system/core/sh/ |
H A D | mystring.c | 48 * 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 D | input.c | 49 #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 D | expand.c | 76 * 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/media/opensles/tests/sandbox/ |
H A D | object.c | 20 #include <string.h> 49 const char *string = slesutObjectIDToString(objectID); local 50 if (NULL != string) 51 printf(" (%s)", string);
|
/system/wlan/ti/wilink_6_1/utils/ |
H A D | rate.c | 527 DESCRIPTION: Converts bit map to the rates string 532 OUTPUT: string - network format rates array, 542 TI_UINT8 *string, 552 string[i++] = NET_RATE_1M_BASIC; 556 string[i++] = NET_RATE_1M; 564 string[i++] = NET_RATE_2M_BASIC; 568 string[i++] = NET_RATE_2M; 576 string[i++] = NET_RATE_5_5M_BASIC; 580 string[i++] = NET_RATE_5_5M; 588 string[ 540 rate_DrvBitmapToNetStr(TI_UINT32 uSuppRatesBitMap, TI_UINT32 uBasicRatesBitMap, TI_UINT8 *string, TI_UINT32 *len, TI_UINT32 *pFirstOfdmRate) argument 827 rate_NetStrToDrvBitmap(TI_UINT32 *pBitMap, TI_UINT8 *string, TI_UINT32 len) argument 963 rate_NetBasicStrToDrvBitmap(TI_UINT32 *pBitMap, TI_UINT8 *string, TI_UINT32 len) argument 1080 rate_McsNetStrToDrvBitmap(TI_UINT32 *pBitMap, TI_UINT8 *string) argument [all...] |
/system/core/libpixelflinger/codeflinger/ |
H A D | ARMAssemblerProxy.cpp | 64 void ARMAssemblerProxy::comment(const char* string) { argument 65 mTarget->comment(string);
|
H A D | ARMAssembler.cpp | 103 void ARMAssembler::comment(const char* string) argument 105 mComments.add(mPC, string);
|
/system/core/debuggerd/ |
H A D | debuggerd.c | 619 write_string(const char* file, const char* string) argument 625 len = strlen(string); 628 amt = write(fd, string, len);
|
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/ |
H A D | utils.c | 574 DESCRIPTION: Converts bit map to the rates string 579 OUTPUT: string - network format rates array, 588 UINT8 *string, UINT32 *len, 597 string[i++] = NET_RATE_1M_BASIC; 599 string[i++] = NET_RATE_1M; 604 string[i++] = NET_RATE_2M_BASIC; 606 string[i++] = NET_RATE_2M; 611 string[i++] = NET_RATE_5_5M_BASIC; 613 string[i++] = NET_RATE_5_5M; 618 string[ 587 bitMapToNetworkStringRates(UINT32 suppRatesBitMap, UINT32 basicRatesBitMap, UINT8 *string, UINT32 *len, UINT32 *firstOFDMrateLoc) argument 705 networkStringToBitMapSuppRates(UINT32 *bitMap, UINT8 *string, UINT32 len) argument 786 networkStringToBitMapBasicRates(UINT32 *bitMap, UINT8 *string, UINT32 len) argument [all...] |
/system/core/libacc/ |
H A D | acc.cpp | 21 #include <string.h> 454 * et is ET_RVALUE for things like string constants, ET_LVALUE for 3552 // Returns a token for a given string of characters. 4000 // Order has to match string list in "internKeywords". 4051 /* tokens in string heap */ 4615 // This while loop merges multiple adjacent string constants. 4621 error("Unterminated string constant."); 6288 const ACCchar ** string, 6293 const ACCchar* s = string[i]; 6309 const ACCchar* s = string[ 6286 accScriptSource(ACCscript* script, ACCsizei count, const ACCchar ** string, const ACCint * length) argument [all...] |