OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threadset
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
test4.c
55
static Thread
threadset
[N_THREAD];
variable
139
if(
threadset
[i].busy ){
143
threadset
[i].busy = 1;
144
sqlite3_free(
threadset
[i].zFilename);
145
threadset
[i].zFilename = sqlite3_mprintf("%s", argv[2]);
146
threadset
[i].opnum = 1;
147
threadset
[i].completed = 0;
148
rc = pthread_create(&x, 0, thread_main, &
threadset
[i]);
151
sqlite3_free(
threadset
[i].zFilename);
152
threadset
[i].busy = 0
[
all
...]
test7.c
78
static Thread
threadset
[N_THREAD];
variable
161
if(
threadset
[i].busy ){
165
threadset
[i].busy = 1;
166
sqlite3_free(
threadset
[i].zFilename);
167
threadset
[i].zFilename = sqlite3_mprintf("%s", argv[2]);
168
threadset
[i].opnum = 1;
169
threadset
[i].completed = 0;
170
rc = pthread_create(&x, 0, client_main, &
threadset
[i]);
173
sqlite3_free(
threadset
[i].zFilename);
174
threadset
[i].busy = 0
[
all
...]
Completed in 547 milliseconds