Searched defs:id_str (Results 1 - 17 of 17) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/ap/
H A Deap_user_db.c138 char id_str[256], cmd[300]; local
141 if (identity_len >= sizeof(id_str))
143 os_memcpy(id_str, identity, identity_len);
144 id_str[identity_len] = '\0';
146 if (id_str[i] >= 'a' && id_str[i] <= 'z')
148 if (id_str[i] >= 'A' && id_str[i] <= 'Z')
150 if (id_str[i] >= '0' && id_str[
[all...]
/external/wpa_supplicant_8/src/ap/
H A Deap_user_db.c138 char id_str[256], cmd[300]; local
141 if (identity_len >= sizeof(id_str))
143 os_memcpy(id_str, identity, identity_len);
144 id_str[identity_len] = '\0';
146 if (id_str[i] >= 'a' && id_str[i] <= 'z')
148 if (id_str[i] >= 'A' && id_str[i] <= 'Z')
150 if (id_str[i] >= '0' && id_str[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Deap_user_db.c138 char id_str[256], cmd[300]; local
141 if (identity_len >= sizeof(id_str))
143 os_memcpy(id_str, identity, identity_len);
144 id_str[identity_len] = '\0';
146 if (id_str[i] >= 'a' && id_str[i] <= 'z')
148 if (id_str[i] >= 'A' && id_str[i] <= 'Z')
150 if (id_str[i] >= '0' && id_str[
[all...]
/external/chromium_org/chrome/browser/extensions/api/audio/
H A Daudio_service_chromeos.cc53 uint64 GetIdFromStr(const std::string& id_str);
186 uint64 AudioServiceImpl::GetIdFromStr(const std::string& id_str) { argument
188 if (!base::StringToUint64(id_str, &device_id))
/external/chromium_org/chrome/common/extensions/api/input_ime/
H A Dinput_components_handler.cc61 std::string id_str; local
104 if (!module_value->GetString(keys::kId, &id_str)) {
105 id_str = "";
217 info->input_components.back().id = id_str;
/external/qemu/android/
H A Dsnapshot.c77 char *id_str; member in struct:SnapshotInfo
96 AFREE(info->id_str);
140 info->id_str = android_alloc(id_str_size + 1); // +1: manual null-termination
143 read_or_die(fd, info->id_str, id_str_size);
146 info->id_str[id_str_size] = '\0';
235 info->id_str, info->name, size_buf, date_buf, clock_buf);
/external/qemu/block/
H A Dqcow2-snapshot.c45 /* id_str follows */
56 g_free(s->snapshots[i].id_str);
99 sn->id_str = g_malloc(id_str_size + 1);
100 if (bdrv_pread(bs->file, offset, sn->id_str, id_str_size) != id_str_size)
103 sn->id_str[id_str_size] = '\0';
135 offset += strlen(sn->id_str);
156 id_str_size = strlen(sn->id_str);
164 if (bdrv_pwrite_sync(bs->file, offset, sn->id_str, id_str_size) < 0)
192 char *id_str, int id_str_size)
200 id = strtoul(sn->id_str, NUL
191 find_new_snapshot_id(BlockDriverState *bs, char *id_str, int id_str_size) argument
207 find_snapshot_by_id(BlockDriverState *bs, const char *id_str) argument
[all...]
H A Dqcow2.h73 char *id_str; member in struct:QCowSnapshot
/external/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp854 StreamString id_str; local
855 BreakpointID::GetCanonicalReference (&id_str,
861 result.GetOutputStream().Printf ("Breakpoint %s:\n", id_str.GetData());
869 id_str.GetData());
H A DCommandObjectBreakpoint.cpp1825 StreamString id_str; local
1826 BreakpointID::GetCanonicalReference (&id_str,
1831 id_str.GetData());
/external/chromium_org/net/http/
H A Dhttp_server_properties_manager.cc412 const std::string& id_str = dict_it.key(); local
414 if (!base::StringToInt(id_str, &id)) {
/external/qemu/include/block/
H A Dblock.h20 char id_str[128]; /* unique snapshot id */ member in struct:QEMUSnapshotInfo
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_database_index_on_disk.cc490 std::string id_str;
491 if (!RemovePrefix(itr->key().ToString(), kDirtyIDKeyPrefix, &id_str))
495 if (!base::StringToInt64(id_str, &tracker_id))
544 std::string id_str; local
545 if (!RemovePrefix(itr->key().ToString(), kDemotedDirtyIDKeyPrefix, &id_str))
549 if (!base::StringToInt64(id_str, &tracker_id))
641 std::string id_str; local
642 if (!RemovePrefix(itr->key().ToString(), kFileTrackerKeyPrefix, &id_str))
646 if (!base::StringToInt64(id_str, &tracker_id))
865 std::string id_str; local
1048 std::string id_str; local
1075 const std::string id_str = base::Int64ToString(tracker.tracker_id()); local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_ssid.h367 * id_str - Network identifier string for external scripts
373 char *id_str; member in struct:wpa_ssid
H A Dwps_supplicant.c2126 int ndef, const char *id_str)
2129 if (id_str) {
2134 id = strtol(id_str, &end, 10);
2125 wpas_wps_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef, const char *id_str) argument
/external/chromium_org/base/debug/
H A Dtrace_event_unittest.cc1316 std::string id_str; local
1317 StringAppendF(&id_str, "0x%llx", id);
1319 EXPECT_TRUE(FindNamePhaseKeyValue("name1", "S", "id", id_str.c_str()));
1320 EXPECT_TRUE(FindNamePhaseKeyValue("name1", "T", "id", id_str.c_str()));
1321 EXPECT_TRUE(FindNamePhaseKeyValue("name1", "F", "id", id_str.c_str()));
/external/elfutils/0.153/src/
H A Dld.h627 id_str, /* Normal string. */ enumerator in enum:id_list::__anon21298::id_type

Completed in 689 milliseconds