Searched refs:tid (Results 26 - 50 of 284) sorted by relevance

1234567891011>>

/macosx-10.9.5/OpenSSH-186/openssh/regress/
H A Dbroken-pipe.sh4 tid="broken pipe test"
H A Dkeyscan.sh4 tid="keyscan"
H A Dproxy-connect.sh4 tid="proxy connect"
H A Dexit-status.sh4 tid="remote exit status"
9 verbose "test $tid: proto $p status $s"
H A Dintegrity.sh4 tid="integrity"
32 trace "test $tid: mac $m"
57 verbose "test $tid: $m @$off $output"
66 verbose "test $tid: $ecnt errors: mac $emac padding $epad length $elen"
H A Dproto-mismatch.sh4 tid="protocol version mismatch"
H A Dproto-version.sh4 tid="sshd version with different protocol combinations"
H A Dputty-kex.sh4 tid="putty KEX"
15 verbose "$tid: kex $k"
H A Dsftp-badcmds.sh4 tid="sftp invalid commands"
15 verbose "$tid: get nonexistent"
21 verbose "$tid: glob get to nonexistent directory"
29 verbose "$tid: put nonexistent"
35 verbose "$tid: glob put to nonexistent directory"
43 verbose "$tid: rename nonexistent"
51 verbose "$tid: rename target exists (directory)"
61 verbose "$tid: glob put files to local file"
H A Dsftp-batch.sh4 tid="sftp batchfile"
39 verbose "$tid: good commands"
43 verbose "$tid: bad commands"
47 verbose "$tid: comments and blanks"
51 verbose "$tid: junk command"
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dthreaded.d53 @sample[pid, execname] = lquantize(tid, 0, 128, 1);
/macosx-10.9.5/dtrace-118.1/DTTk/Proc/
H A Dthreaded.d53 @sample[pid, execname] = lquantize(tid, 0, 128, 1);
/macosx-10.9.5/dtrace-118.1/test/tst/common/aggs/
H A Dtst.goodkey.d47 @counts[execname, pid, id, tid, arg0, vtimestamp ] = count();
/macosx-10.9.5/libxml2-26/libxml2/
H A DtestThreads.c24 static pthread_t tid[MAX_ARGC]; variable
26 static thread_id tid[MAX_ARGC]; variable
109 memset(tid, 0xff, sizeof(*tid)*num_threads);
112 ret = pthread_create(&tid[i], NULL, thread_specific_data,
120 ret = pthread_join(tid[i], &results[i]);
153 tid[i] = (thread_id) -1;
157 tid[i] = spawn_thread(thread_specific_data, "xmlTestThread", B_NORMAL_PRIORITY, (void *) testfiles[i]);
158 if (tid[i] < B_OK) {
162 printf("beos_thread_create %d -> %d\n", i, tid[
[all...]
H A DtestThreadsWin32.c17 static HANDLE tid[MAX_ARGC]; variable
101 tid[i] = (HANDLE) -1;
107 tid[i] = CreateThread(NULL, 0,
109 if (tid[i] == NULL)
116 if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED)
121 ret = GetExitCodeThread (tid[i], &results[i]);
127 CloseHandle (tid[i]);
/macosx-10.9.5/apache-786.1/httpd/server/mpm/beos/
H A Dmpm.h33 #define MPM_CHILD_PID(i) (ap_scoreboard_image->servers[0][i].tid)
/macosx-10.9.5/xnu-2422.115.4/osfmk/kperf/
H A Dthreadinfo.h36 uint64_t tid; member in struct:threadinfo
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/transapp/
H A Dput.cs68 DB_TXN *tid;
81 if ((ret = dbenv-__GT__txn_begin(dbenv, NULL, &tid, 0)) != 0) {
87 switch (ret = db-__GT__put(db, tid, &key, &data, 0)) {
90 if ((ret = tid-__GT__commit(tid, 0)) != 0) {
98 if ((t_ret = tid-__GT__abort(tid)) != 0) {
H A Dcursor.cs89 DB_TXN *tid;
102 if ((ret = dbenv-__GT__txn_begin(dbenv, NULL, &tid, 0)) != 0) {
108 switch (ret = db-__GT__del(db, tid, &key, 0)) {
115 if ((t_ret = tid-__GT__abort(tid)) != 0) {
125 if ((ret = db-__GT__cursor(db, tid, &dbc, 0)) != 0) {
148 if ((t_ret = tid-__GT__abort(tid)) != 0) {
164 if ((ret = tid-__GT__commit(tid,
[all...]
H A Dinc.cs75 DB_TXN *tid;
88 if ((ret = dbenv-__GT__txn_begin(dbenv, NULL, &tid, 0)) != 0) {
97 switch (ret = dbp-__GT__get(dbp, tid, &key, &data, DB_RMW)) {
104 if ((t_ret = tid-__GT__abort(tid)) != 0) {
124 switch (ret = dbp-__GT__put(dbp, tid, &key, &data, 0)) {
127 if ((ret = tid-__GT__commit(tid, 0)) != 0) {
135 if ((t_ret = tid-__GT__abort(tid)) !
[all...]
H A Dtransapp.cs278 DB_TXN *tid;
291 if ((ret = dbenv->txn_begin(dbenv, NULL, &tid, 0)) != 0) {
297 switch (ret = db->put(db, tid, &key, &data, 0)) {
300 if ((ret = tid->commit(tid, 0)) != 0) {
307 if ((ret = tid->abort(tid)) != 0) {
324 DB_TXN *tid;
337 if ((ret = dbenv->txn_begin(dbenv, NULL, &tid, 0)) != 0) {
346 switch (ret = dbp->get(dbp, tid,
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap_r/
H A Dthr_nt.c30 long tid; member in struct:ldap_int_thread_s
63 unsigned tid; local
68 arg, 0, &tid);
71 *thread = (ldap_pvt_thread_t) tid;
72 tids[ntids].tid = tid;
93 if ( tids[i].tid == thread )
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A DtestThreadsWin32.c17 static HANDLE tid[MAX_ARGC]; variable
101 tid[i] = (HANDLE) -1;
107 tid[i] = CreateThread(NULL, 0,
109 if (tid[i] == NULL)
116 if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED)
121 ret = GetExitCodeThread (tid[i], &results[i]);
127 CloseHandle (tid[i]);
H A DtestThreads.c24 static pthread_t tid[MAX_ARGC]; variable
26 static thread_id tid[MAX_ARGC]; variable
110 tid[i] = (pthread_t) -1;
114 ret = pthread_create(&tid[i], NULL, thread_specific_data,
122 ret = pthread_join(tid[i], &results[i]);
155 tid[i] = (thread_id) -1;
159 tid[i] = spawn_thread(thread_specific_data, "xmlTestThread", B_NORMAL_PRIORITY, (void *) testfiles[i]);
160 if (tid[i] < B_OK) {
164 printf("beos_thread_create %d -> %d\n", i, tid[i]);
167 ret = wait_for_thread(tid[
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/docs/ref/transapp/
H A Dtransapp.cs278 DB_TXN *tid;
291 if ((ret = dbenv->txn_begin(dbenv, NULL, &tid, 0)) != 0) {
297 switch (ret = db->put(db, tid, &key, &data, 0)) {
300 if ((ret = tid->commit(tid, 0)) != 0) {
307 if ((ret = tid->abort(tid)) != 0) {
324 DB_TXN *tid;
337 if ((ret = dbenv->txn_begin(dbenv, NULL, &tid, 0)) != 0) {
346 switch (ret = dbp->get(dbp, tid,
[all...]

Completed in 108 milliseconds

1234567891011>>