Searched refs:string (Results 176 - 200 of 1337) sorted by last modified time

1234567891011>>

/frameworks/native/cmds/atrace/
H A Datrace.cpp26 #include <string.h>
252 // Write a string to a file, returning true if the write was successful.
258 // Append a string to a file, returning true if the write was successful.
438 svc.string());
516 bool found = funcList.find(fancyFunc.string(), 0) >= 0;
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.c24 #include <string.h>
H A Dutils.c26 #include <string.h>
790 // Each line has an integer (the table number), a space, and a string (the table name). We only
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp18 #include <string.h>
/frameworks/native/cmds/installd/
H A Dcommands.cpp53 std::string _pkgdir(create_data_user_package_path(uuid, 0, pkgname));
83 std::string _pkgdir(create_data_user_package_path(uuid, userid, pkgname));
118 std::string _pkgdir(create_data_user_package_path(uuid, 0, pkgname));
144 std::string _pkgdir(create_data_user_package_path(uuid, userid, pkgname));
152 std::string _pkgdir(create_data_user_package_path(uuid, userid, pkgname));
187 std::string from(create_data_app_package_path(from_uuid, data_app_name));
188 std::string to(create_data_app_package_path(to_uuid, data_app_name));
189 std::string to_parent(create_data_app_path(to_uuid));
219 std::string from(create_data_user_package_path(from_uuid, user, package_name));
220 std::string t
[all...]
H A Dinstalld.h34 #include <string>
150 std::string create_data_path(const char* volume_uuid);
152 std::string create_data_app_path(const char* volume_uuid);
154 std::string create_data_app_package_path(const char* volume_uuid, const char* package_name);
156 std::string create_data_user_path(const char* volume_uuid, userid_t userid);
158 std::string create_data_user_package_path(const char* volume_uuid,
161 std::string create_data_media_path(const char* volume_uuid, userid_t userid);
187 int64_t data_disk_free(const std::string& data_path);
193 void clear_cache_files(const std::string& data_path, cache_t* cache, int64_t free_size);
H A Dutils.cpp27 * Check that given string is valid filename, and that it attempts no
30 static bool is_valid_filename(const std::string& name) {
32 || (name.find('/') != std::string::npos)) {
44 std::string create_data_app_package_path(const char* volume_uuid,
58 std::string create_data_user_package_path(const char* volume_uuid,
74 std::string _tmp(create_data_user_package_path(nullptr, userid, pkgname) + postfix);
85 std::string create_data_path(const char* volume_uuid) {
97 std::string create_data_app_path(const char* volume_uuid) {
104 std::string create_data_user_path(const char* volume_uuid, userid_t userid) {
105 std::string dat
[all...]
/frameworks/native/cmds/installd/tests/
H A Dinstalld_utils_test.cpp18 #include <string.h>
326 << "Package path should be a really long string of a's";
/frameworks/native/cmds/ip-up-vpn/
H A Dip-up-vpn.c19 #include <string.h>
51 * an empty string or space-separated values. The order and the format must be
/frameworks/native/cmds/rawbu/
H A Dbackup.cpp6 #include <string.h>
/frameworks/native/cmds/service/
H A Dservice.cpp25 #include <string.h>
31 void writeString16(Parcel& parcel, const char* string) argument
33 if (string != NULL)
35 parcel.writeString16(String16(string));
161 aerr << "service: no string supplied for 's16'" << endl;
308 " s16: Write the UTF-16 string STR into the send parcel.\n";
/frameworks/native/cmds/servicemanager/
H A Dbctest.c6 #include <string.h>
H A Dbinder.c7 #include <string.h>
H A Dservice_manager.c9 #include <string.h>
/frameworks/native/include/binder/
H A DTextOutput.h23 #include <string.h>
/frameworks/native/include/gui/
H A DBufferQueueCore.h36 #define BQ_LOGV(x, ...) ALOGV("[%s] " x, mConsumerName.string(), ##__VA_ARGS__)
37 #define BQ_LOGD(x, ...) ALOGD("[%s] " x, mConsumerName.string(), ##__VA_ARGS__)
38 #define BQ_LOGI(x, ...) ALOGI("[%s] " x, mConsumerName.string(), ##__VA_ARGS__)
39 #define BQ_LOGW(x, ...) ALOGW("[%s] " x, mConsumerName.string(), ##__VA_ARGS__)
40 #define BQ_LOGE(x, ...) ALOGE("[%s] " x, mConsumerName.string(), ##__VA_ARGS__)
46 mCore->mConsumerName.string(), (index)); \
82 // Dump our state in a string
154 // mConsumerName is a string used to identify the BufferQueue in log
/frameworks/native/include/ui/
H A DANativeObjectBase.h21 #include <string.h>
/frameworks/native/libs/binder/
H A DIServiceManager.cpp84 String8(permission).string(), uid, pid);
92 String8(permission).string(), uid, pid);
111 String8(permission).string(), uid, pid);
140 ALOGI("Waiting for service %s...\n", String8(name).string());
H A DMemoryDealer.cpp34 #include <string.h>
418 ALOGD("%s", result.string());
H A DParcel.cpp558 // currently the interface identification token is just its name as a string
589 String8(interface).string(), String8(str).string());
812 // only write string if its length is more than zero characters,
816 err = write(str.string(), str.bytes()+1);
823 return writeString16(str.string(), str.size());
1261 // is the string's trailing NUL within the parcel's valid bounds?
1289 ALOGE("Reading a NULL string not supported here.");
H A DPermissionCache.cpp105 String8(permission).string(), uid,
H A DProcessState.cpp103 //printf("Getting context object %s for %p\n", String8(name).string(), caller.get());
110 String8(name).string());
290 ALOGV("Spawning new pooled thread, name=%s\n", name.string());
292 t->run(name.string());
308 androidSetThreadName( makeBinderThreadName().string() );
H A DTextOutput.cpp26 #include <string.h>
127 to << val.string();
133 to << String8(val).string();
/frameworks/native/libs/gui/
H A DBufferItemConsumer.cpp25 //#define BI_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
26 //#define BI_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
27 //#define BI_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
28 //#define BI_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
29 #define BI_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
H A DBufferQueueConsumer.cpp193 ATRACE_INT(mCore->mConsumerName.string(), mCore->mQueue.size());
531 BQ_LOGV("setConsumerName: '%s'", name.string());

Completed in 182 milliseconds

1234567891011>>