Home | History | Annotate | Download | only in src

Lines Matching refs:threads

458     case 'threads':
1483 // Create a JSON request for the threads command.
1485 // Build a threads request from the text command.
1486 var request = this.createRequest('threads');
2246 case 'threads':
2247 var result = 'Active V8 threads: ' + body.totalThreads + '\n';
2248 body.threads.sort(function(a, b) { return a.id - b.id; });
2249 for (i = 0; i < body.threads.length; i++) {
2250 result += body.threads[i].current ? '*' : ' ';
2252 result += body.threads[i].id;