Home | History | Annotate | Download | only in src

Lines Matching refs:threads

450     case 'threads':
1471 // Create a JSON request for the threads command.
1473 // Build a threads request from the text command.
1474 var request = this.createRequest('threads');
2231 case 'threads':
2232 var result = 'Active V8 threads: ' + body.totalThreads + '\n';
2233 body.threads.sort(function(a, b) { return a.id - b.id; });
2234 for (i = 0; i < body.threads.length; i++) {
2235 result += body.threads[i].current ? '*' : ' ';
2237 result += body.threads[i].id;