Searched refs:thread_data (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dnwlib.c162 libthreaddata_t *thread_data; local
167 thread_data = (libthreaddata_t *) NULL;
241 && !(err = NXKeyGetValue(key, (void **) &thread_data))
242 && !thread_data) {
250 thread_data = malloc(sizeof(libthreaddata_t));
252 if(thread_data) {
253 thread_data->_errno = 0;
254 thread_data->twentybytes = malloc(20);
256 if(!thread_data->twentybytes) {
257 free(thread_data);
[all...]
H A Dasyn-thread.c170 struct thread_data { struct
179 return &(((struct thread_data *)conn->async.os_specific)->tsd);
323 struct thread_data *td = (struct thread_data*) async->os_specific;
346 struct thread_data *td = calloc(1, sizeof(struct thread_data));
426 struct thread_data *td = (struct thread_data*) conn->async.os_specific;
463 struct thread_data *td = (struct thread_data*) con
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Drtmutex-tester.c35 static struct test_thread_data thread_data[MAX_RT_TEST_THREADS]; variable in typeref:struct:test_thread_data
173 td = &thread_data[tid];
403 thread_data[id].sysdev.cls = &rttest_sysclass;
404 thread_data[id].sysdev.id = id;
406 threads[id] = kthread_run(test_func, &thread_data[id], "rt-test-%d", id);
410 return sysdev_register(&thread_data[id].sysdev);
430 ret = sysdev_create_file(&thread_data[i].sysdev, &attr_status);
433 ret = sysdev_create_file(&thread_data[i].sysdev, &attr_command);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dgsockmsw.cpp155 typedef struct thread_data{ struct
160 }thread_data; typedef in typeref:struct:thread_data
174 thread_data* d = (thread_data *)data;
447 * All needed parameters get passed through the thread_data structure.
450 thread_data* d = new thread_data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dmswindows.c487 struct thread_data
506 struct thread_data *td = (struct thread_data *) arg;
532 struct thread_data thread_arg;
485 struct thread_data struct
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dexr.c110 EXRThreadData *thread_data; member in struct:EXRContext
833 EXRThreadData *td = &s->thread_data[threadnr];
1332 avctx->execute2(avctx, decode_block, s->thread_data, NULL, scan_line_blocks);
1388 s->thread_data = av_mallocz_array(avctx->thread_count, sizeof(EXRThreadData));
1389 if (!s->thread_data)
1399 s->thread_data = av_mallocz_array(avctx->thread_count, sizeof(EXRThreadData));
1400 if (!s->thread_data)
1411 EXRThreadData *td = &s->thread_data[i];
1418 av_freep(&s->thread_data);
H A Dvp8.h139 VP8ThreadData *thread_data; member in struct:VP8Context
H A Dvp8.c51 if (s->thread_data)
54 pthread_cond_destroy(&s->thread_data[i].cond);
55 pthread_mutex_destroy(&s->thread_data[i].lock);
57 av_freep(&s->thread_data[i].filter_strength);
59 av_freep(&s->thread_data);
177 s->thread_data = av_mallocz(MAX_THREADS * sizeof(VP8ThreadData));
180 s->thread_data[i].filter_strength =
181 av_mallocz(s->mb_width * sizeof(*s->thread_data[0].filter_strength));
183 pthread_mutex_init(&s->thread_data[i].lock, NULL);
184 pthread_cond_init(&s->thread_data[
[all...]

Completed in 199 milliseconds