OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:writers
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Support/
RWMutex.h
88
unsigned readers,
writers
;
member in class:llvm::sys::SmartRWMutex
90
explicit SmartRWMutex() : RWMutexImpl(), readers(0),
writers
(0) { }
119
assert(
writers
== 0 && "Writer lock already acquired!");
120
++
writers
;
130
assert(
writers
== 1 && "Writer lock not acquired before release!");
131
--
writers
;
/sdk/chimpchat/src/com/android/chimpchat/core/
ChimpImageBase.java
93
Iterator<ImageWriter>
writers
= ImageIO.getImageWritersBySuffix(ext);
local
94
if (!
writers
.hasNext()) {
97
ImageWriter writer =
writers
.next();
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop.c
55
struct eloop_sock_table
writers
;
member in struct:eloop_data
206
return &eloop.
writers
;
464
eloop.
writers
.count > 0 || eloop.exceptions.count > 0)) {
480
eloop_sock_table_set_fds(&eloop.
writers
, wfds);
509
eloop_sock_table_dispatch(&eloop.
writers
, wfds);
551
eloop_sock_table_destroy(&eloop.
writers
);
/external/wpa_supplicant_8/src/utils/
eloop.c
67
struct eloop_sock_table
writers
;
member in struct:eloop_data
238
struct eloop_sock_table *
writers
,
264
if (
writers
&&
writers
->table) {
265
for (i = 0; i <
writers
->count; i++) {
270
fd =
writers
->table[i].sock;
347
struct eloop_sock_table *
writers
,
356
if (eloop_sock_table_dispatch_table(
writers
, pollfds_map,
446
return &eloop.
writers
;
703
eloop.
writers
.count > 0 || eloop.exceptions.count > 0))
[
all
...]
Completed in 165 milliseconds