Home
last modified time | relevance | path

Searched refs:new_string (Results 1 – 17 of 17) sorted by relevance

/external/ltp/testcases/kernel/fs/inode/
Dinode01.c308 char new_string[PATH_STRING_LENGTH + 1]; local
328 snp_ret = snprintf(new_string, sizeof(new_string),
330 if (snp_ret < 0 || snp_ret >= sizeof(new_string)) {
352 file_id = creat(new_string, FILE_MODE);
356 new_string, errno);
360 printf("%d %s F\n", level, new_string);
369 len = strlen(new_string);
372 write(file_id, new_string, len);
376 new_string, len,
389 strcpy(write_string, new_string);
[all …]
Dinode02.c408 char new_string[PATH_STRING_LENGTH + 1]; local
428 snp_ret = snprintf(new_string, sizeof(new_string),
430 if (snp_ret < 0 || snp_ret >= sizeof(new_string)) {
452 file_id = creat(new_string, FILE_MODE);
456 new_string, errno);
461 new_string);
470 len = strlen(new_string);
473 write(file_id, new_string, len);
477 new_string, errno);
489 strcpy(write_string, new_string);
[all …]
/external/v8/src/ast/
Dast-value-factory.cc293 AstConsString* new_string = new (zone_) AstConsString(left, right); in NewConsString() local
294 CHECK(new_string != nullptr); in NewConsString()
295 AddString(new_string); in NewConsString()
296 return new_string; in NewConsString()
389 AstRawString* new_string = new (zone_) AstRawString( in GetString() local
391 CHECK_NOT_NULL(new_string); in GetString()
392 AddString(new_string); in GetString()
393 entry->key = new_string; in GetString()
/external/oj-libjdwp/src/share/npt/
Dutf.h70 jbyte *new_string, int new_length);
75 jbyte *new_string, int new_length);
/external/oj-libjdwp/src/share/back/
DinStream.c385 char *new_string; in inStream_readString() local
387 new_string = jvmtiAllocate(new_length+1); in inStream_readString()
390 (jbyte*)new_string, new_length); in inStream_readString()
392 return new_string; in inStream_readString()
DoutStream.c316 char *new_string; in outStream_writeString() local
318 new_string = jvmtiAllocate(new_length+1); in outStream_writeString()
321 (jbyte*)new_string, new_length); in outStream_writeString()
323 error = writeBytes(stream, (jbyte *)new_string, new_length); in outStream_writeString()
324 jvmtiDeallocate(new_string); in outStream_writeString()
/external/python/cpython2/Lib/test/
Dtest_xml_etree.py100 new_string = string + ""
101 new_string = string + " "
/external/libpcap/
Dpcap-win32.c871 char *new_string; in pcap_activate_win32() local
877 new_string = (char*)malloc(len); in pcap_activate_win32()
878 if (new_string != NULL) in pcap_activate_win32()
881 strcpy_s(new_string, len, p->opt.device + strlen(PCAP_SRC_IF_STRING)); in pcap_activate_win32()
883 p->opt.device = new_string; in pcap_activate_win32()
/external/python/cpython2/Parser/
Dtokenizer.c134 new_string(const char *s, Py_ssize_t len) in new_string() function
161 return new_string(str, strlen(str)); in decode_str()
238 char* r = new_string(begin, t - begin); in get_coding_spec()
245 r = new_string(q, strlen(q)); in get_coding_spec()
381 tok->encoding = new_string("utf-8", 5); /* resulting is in utf-8 */ in check_bom()
820 converted = new_string(PyString_AS_STRING(utf8), in tok_stdin_decode()
830 tok->encoding = new_string(encoding, strlen(encoding)); in tok_stdin_decode()
/external/dng_sdk/source/
Ddng_string.cpp1617 const char *new_string, in Replace() argument
1631 uint32 len3 = strlenAsUint32 (new_string); in Replace()
1637 new_string, in Replace()
1646 new_string, in Replace()
1682 new_string, in Replace()
Ddng_string.h125 const char *new_string,
/external/python/cpython3/Parser/
Dtokenizer.c159 new_string(const char *s, Py_ssize_t len, struct tok_state *tok) in new_string() function
188 return new_string(str, strlen(str), tok); in decode_str()
266 char* r = new_string(begin, t - begin, tok); in get_coding_spec()
273 r = new_string(q, strlen(q), tok); in get_coding_spec()
404 tok->encoding = new_string("utf-8", 5, tok); in check_bom()
/external/toybox/kconfig/
Dlex.zconf.c_shipped788 void new_string(void)
1103 new_string();
2242 new_string();
/external/v8/src/
Dcode-stub-assembler.cc3667 Node* new_string = in StringAdd() local
3669 CopyStringCharacters(var_left.value(), new_string, SmiConstant(Smi::kZero), in StringAdd()
3673 CopyStringCharacters(var_right.value(), new_string, SmiConstant(Smi::kZero), in StringAdd()
3676 result.Bind(new_string); in StringAdd()
3682 new_string = in StringAdd()
3684 CopyStringCharacters(var_left.value(), new_string, in StringAdd()
3688 CopyStringCharacters(var_right.value(), new_string, in StringAdd()
3692 result.Bind(new_string); in StringAdd()
/external/python/cpython3/Lib/test/
Dtest_xml_etree.py171 new_string = string + ""
172 new_string = string + " "
/external/python/cpython2/Doc/library/
Dre.rst685 Perform the same operation as :func:`sub`, but return a tuple ``(new_string,
/external/python/cpython3/Doc/library/
Dre.rst777 Perform the same operation as :func:`sub`, but return a tuple ``(new_string,