Searched refs:filename (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/tools/zoneinfo/
H A Dupdate-tzdata.py68 def FtpRetrieve(ftp, filename):
69 ftp.retrbinary('RETR %s' % filename, open(filename, 'wb').write)
158 for filename in ftp.nlst():
159 if filename.startswith('tzdata20') and filename.endswith('.tar.gz'):
160 tzdata_filenames.append(filename)
175 for filename in tzdata_filenames:
176 if filename > current_filename:
177 print 'Found new tzdata: %s' % filename
[all...]
/bionic/libc/include/
H A Ddlfcn.h46 extern void* dlopen(const char* filename, int flag);
/bionic/libdl/
H A Dlibdl.c21 void *dlopen(const char *filename, int flag) { return 0; } argument
/bionic/libc/include/sys/
H A D_system_properties.h88 ** Map the property area from the specified filename. This
91 int __system_property_set_filename(const char *filename);
/bionic/libc/kernel/common/linux/
H A Drelay.h85 struct dentry *(*create_buf_file)(const char *filename,
/bionic/libc/tools/
H A Dgenerate-NOTICE.py112 for filename in sorted(filenames):
113 path = os.path.join(directory, filename)
/bionic/linker/
H A Ddlfcn.cpp63 void* dlopen(const char* filename, int flags) { argument
65 soinfo* result = do_dlopen(filename, flags);
/bionic/tests/
H A Dpthread_test.cpp221 char* filename = NULL; local
222 asprintf(&filename, "/proc/self/task/%d/comm", gettid());
224 bool has_comm = (stat(filename, &sb) != -1);
225 free(filename);
/bionic/libc/bionic/
H A Dsystem_properties.c183 int __system_property_set_filename(const char *filename) argument
185 size_t len = strlen(filename);
189 strcpy(property_filename, filename);

Completed in 232 milliseconds