Searched refs:nSep (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 2478 int nSep; /* Number of bytes in zSep[] */ in DbObjCmd() local 2509 nSep = strlen30(zSep); in DbObjCmd() 2511 if( nSep==0 ){ in DbObjCmd() 2584 if( *z==zSep[0] && strncmp(z, zSep, nSep)==0 ){ in DbObjCmd() 2588 azCol[i] = &z[nSep]; in DbObjCmd() 2589 z += nSep-1; in DbObjCmd()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 26902 int nSep; /* Number of bytes in p->colSeparator[] */ in do_meta_command() local 26965 nSep = strlen30(p->colSeparator); in do_meta_command() 26966 if( nSep==0 ){ in do_meta_command() 26970 if( nSep>1 ){ in do_meta_command() 26975 nSep = strlen30(p->rowSeparator); in do_meta_command() 26976 if( nSep==0 ){ in do_meta_command() 26980 if( nSep==2 && p->mode==MODE_Csv in do_meta_command() 26988 nSep = strlen30(p->rowSeparator); in do_meta_command() 26990 if( nSep>1 ){ in do_meta_command()
|
H A D | sqlite3.c | 130212 int nSep, 130221 n += (argc-1)*nSep; 130233 if( j>0 && nSep>0 ){ 130234 memcpy(&z[j], zSep, nSep); 130235 j += nSep; 130271 int nSep = sqlite3_value_bytes(argv[0]); 130274 concatFuncCore(context, argc-1, argv+1, nSep, zSep); 130728 int nVal, nSep; 130747 nSep = sqlite3_value_bytes(argv[1]); 130749 sqlite3_str_append(&pGCC->str, zSep, nSep); [all …]
|